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.

50 lines
935 B

/*
* ECDsPanel.java
*
* Created on 13 de Maio de 2007, 17:07
*
* 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.ProcessoListener;
/**
*
* @author Frederico
*/
public class ECDsPanel extends JPanel
{
protected JFrame owner;
private final Vector<ProcessoListener> PROCESSO_LISTENERS = new Vector<ProcessoListener>();
/**
* Creates a new instance of ECDsPanel
*/
public ECDsPanel( JFrame owner )
{
this.owner = owner;
setupComponents();
}
private void setupComponents()
{
}
public void addProcessoListener( ProcessoListener listener )
{
PROCESSO_LISTENERS.add( listener );
}
public void removeProcessoListener( ProcessoListener listener )
{
PROCESSO_LISTENERS.remove( listener );
}
}