|
|
|
|
@ -14,6 +14,7 @@ import com.evolute.utils.tracker.*;
|
|
|
|
|
|
|
|
|
|
import siprp.ficha.*;
|
|
|
|
|
import siprp.clientes.*;
|
|
|
|
|
import siprp.pesquisas.*;
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author fpalma
|
|
|
|
|
@ -22,6 +23,7 @@ public class SIPRPTracker extends WindowTracker
|
|
|
|
|
{
|
|
|
|
|
public static final String FICHA_APTIDAO = "Ficha de Aptid\u00e3o";
|
|
|
|
|
public static final String GESTAO_CLIENTES = "Gest\u00e3o de Clientes";
|
|
|
|
|
public static final String ESTATISTICAS = "Estat\u00edsticas";
|
|
|
|
|
|
|
|
|
|
private final AvisosPanel avisos;
|
|
|
|
|
private ClientesWindow clientesWindow;
|
|
|
|
|
@ -66,6 +68,15 @@ public class SIPRPTracker extends WindowTracker
|
|
|
|
|
}
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
rootNode.add( new DefaultMutableTreeNode( ESTATISTICAS ) );
|
|
|
|
|
creators.put( ESTATISTICAS, new WindowCreator() {
|
|
|
|
|
public TrackableWindow create()
|
|
|
|
|
throws Exception
|
|
|
|
|
{
|
|
|
|
|
return new PesquisasWindow();
|
|
|
|
|
}
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
setRoot( rootNode );
|
|
|
|
|
setCreators( creators );
|
|
|
|
|
}
|
|
|
|
|
|