/* * 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) { } }