You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.2 KiB

/*
* DetalhesProcessoPanel.java
*
* Created on 25 de Abril de 2007, 17:34
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package siprp.medicina.processo.detalhes;
import java.util.Vector;
import javax.swing.JFrame;
import javax.swing.JPanel;
import siprp.medicina.processo.*;
/**
*
* @author Frederico
*/
public class DetalhesProcessoPanel extends JPanel
{
private final Vector<ProcessoListener> PROCESSO_LISTENERS = new Vector<ProcessoListener>();
protected JFrame owner;
protected JPanel blankPanel;
protected ConsultaPanel consultaPanel;
protected ECDsPanel ecdsPanel;
/**
* Creates a new instance of DetalhesProcessoPanel
*/
public DetalhesProcessoPanel( JFrame owner )
{
this.owner = owner;
setupComponents();
}
private void setupComponents()
{
blankPanel = new JPanel();
consultaPanel = new ConsultaPanel( owner );
ecdsPanel = new ECDsPanel( owner );
}
public void addProcessoListener( ProcessoListener listener )
{
PROCESSO_LISTENERS.add( listener );
}
public void removeProcessoListener( ProcessoListener listener )
{
PROCESSO_LISTENERS.remove( listener );
}
public void clear()
{
}
}