forked from Coded/SIPRP
no message
git-svn-id: https://svn.coded.pt/svn/SIPRP@346 bb69d46d-e84e-40c8-a05a-06db0d6337410'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z
parent
63b1669d8c
commit
76f2a82b24
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* 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;
|
||||||
|
|
||||||
|
import java.util.Vector;
|
||||||
|
import javax.swing.JPanel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @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 );
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* ProcessoController.java
|
||||||
|
*
|
||||||
|
* Created on 25 de Abril de 2007, 15:10
|
||||||
|
*
|
||||||
|
* To change this template, choose Tools | Template Manager
|
||||||
|
* and open the template in the editor.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package siprp.medicina.processo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Frederico
|
||||||
|
*/
|
||||||
|
public class ProcessoController
|
||||||
|
implements ProcessoListener
|
||||||
|
{
|
||||||
|
protected EstruturaProcessoPanel estruturaProcessoPanel;
|
||||||
|
protected ProcessoPanel processoPanel;
|
||||||
|
protected DetalhesProcessoPanel detalhesProcessoPanel;
|
||||||
|
|
||||||
|
/** Creates a new instance of ProcessoController */
|
||||||
|
public ProcessoController( EstruturaProcessoPanel estruturaProcessoPanel, ProcessoPanel processoPanel,
|
||||||
|
DetalhesProcessoPanel detalhesProcessoPanel )
|
||||||
|
{
|
||||||
|
this.estruturaProcessoPanel = estruturaProcessoPanel;
|
||||||
|
this.processoPanel = processoPanel;
|
||||||
|
this.detalhesProcessoPanel = detalhesProcessoPanel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void processoStateChenged(ProcessoEvent e)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in new issue