|
|
|
|
@ -12,13 +12,14 @@ package siprp.medicina.processo.detalhes;
|
|
|
|
|
import com.evolute.utils.ui.calendar.JCalendarPanel;
|
|
|
|
|
import info.clearthought.layout.TableLayout;
|
|
|
|
|
import info.clearthought.layout.TableLayoutConstraints;
|
|
|
|
|
import java.awt.GridLayout;
|
|
|
|
|
import java.awt.event.ActionEvent;
|
|
|
|
|
import java.awt.event.ActionListener;
|
|
|
|
|
import java.util.Vector;
|
|
|
|
|
import javax.swing.*;
|
|
|
|
|
import javax.swing.event.ChangeEvent;
|
|
|
|
|
import javax.swing.event.ChangeListener;
|
|
|
|
|
import siprp.medicina.MedicinaConstants;
|
|
|
|
|
import siprp.medicina.processo.ProcessoListener;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
@ -35,6 +36,8 @@ public class ConsultaPanel extends JPanel
|
|
|
|
|
|
|
|
|
|
protected ObservacoesDialog observacoesDialog;
|
|
|
|
|
|
|
|
|
|
private final Vector<ProcessoListener> PROCESSO_LISTENERS = new Vector<ProcessoListener>();
|
|
|
|
|
|
|
|
|
|
/** Creates a new instance of ConsultaPanel */
|
|
|
|
|
public ConsultaPanel( JFrame owner )
|
|
|
|
|
{
|
|
|
|
|
@ -91,4 +94,14 @@ public class ConsultaPanel extends JPanel
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void addProcessoListener( ProcessoListener listener )
|
|
|
|
|
{
|
|
|
|
|
PROCESSO_LISTENERS.add( listener );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void removeProcessoListener( ProcessoListener listener )
|
|
|
|
|
{
|
|
|
|
|
PROCESSO_LISTENERS.remove( listener );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|