/* * 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 PROCESSO_LISTENERS = new Vector(); /** * Creates a new instance of DetalhesProcessoPanel */ public DetalhesProcessoPanel() { } public void addProcessoListener( ProcessoListener listener ) { PROCESSO_LISTENERS.add( listener ); } }