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.
		
		
		
		
		
			
		
			
				
					
					
						
							40 lines
						
					
					
						
							1.0 KiB
						
					
					
				
			
		
		
	
	
							40 lines
						
					
					
						
							1.0 KiB
						
					
					
				| /*
 | |
|  * 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;
 | |
| 
 | |
| import siprp.medicina.processo.detalhes.DetalhesProcessoPanel;
 | |
| import siprp.medicina.processo.estrutura.EstruturaProcessoPanel;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * @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)
 | |
| 	{
 | |
| 	}
 | |
| 	
 | |
| }
 |