forked from Coded/SIPRP
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.
42 lines
737 B
42 lines
737 B
/*
|
|
* 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.JPanel;
|
|
import siprp.medicina.processo.*;
|
|
|
|
/**
|
|
*
|
|
* @author Frederico
|
|
*/
|
|
public class DetalhesProcessoPanel extends JPanel
|
|
{
|
|
|
|
private final Vector<ProcessoListener> PROCESSO_LISTENERS = new Vector<ProcessoListener>();
|
|
|
|
/**
|
|
* Creates a new instance of DetalhesProcessoPanel
|
|
*/
|
|
public DetalhesProcessoPanel()
|
|
{
|
|
}
|
|
|
|
|
|
public void addProcessoListener( ProcessoListener listener )
|
|
{
|
|
PROCESSO_LISTENERS.add( listener );
|
|
}
|
|
|
|
public void clear()
|
|
{
|
|
}
|
|
}
|