|
|
|
|
@ -22,6 +22,7 @@ import siprp.medicina.*;
|
|
|
|
|
import siprp.medicina.locais_realizacao.LocaisRealizacaoWindow;
|
|
|
|
|
import siprp.medicina.presencas.RegistarPresencasWindow;
|
|
|
|
|
import siprp.medicina.prestadores.PrestadoresWindow;
|
|
|
|
|
import siprp.medicina.processo.ProcessoWindow;
|
|
|
|
|
import siprp.pesquisas.*;
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
@ -137,6 +138,15 @@ public class SIPRPTracker extends WindowTracker
|
|
|
|
|
|
|
|
|
|
DefaultMutableTreeNode medicinaNode = new DefaultMutableTreeNode( MEDICINA );
|
|
|
|
|
|
|
|
|
|
medicinaNode.add( new DefaultMutableTreeNode( ProcessoWindow.TITLE ) );
|
|
|
|
|
creators.put( ProcessoWindow.TITLE, new WindowCreator() {
|
|
|
|
|
public TrackableWindow create()
|
|
|
|
|
throws Exception
|
|
|
|
|
{
|
|
|
|
|
return new ProcessoWindow();
|
|
|
|
|
}
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
medicinaNode.add( new DefaultMutableTreeNode( MEDICINA_MARCACOES ) );
|
|
|
|
|
creators.put( MEDICINA_MARCACOES, new WindowCreator() {
|
|
|
|
|
public TrackableWindow create()
|
|
|
|
|
|