Update of /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/refonde
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15346/src/org/fudaa/fudaa/refonde
Modified Files:
RefondeImplementation.java Refonde.java
Log Message:
Simplification des classes de démarrage
Index: Refonde.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/refonde/Refonde.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Refonde.java 25 Nov 2003 10:14:10 -0000 1.5
--- Refonde.java 30 Apr 2004 13:52:15 -0000 1.6
***************
*** 42,46 ****
}
// Console système
! if (!flags.no_terminal) {
String ver= RefondeImplementation.informationsSoftware().version;
TerminalStandard ts= new TerminalStandard();
--- 42,46 ----
}
// Console système
! if (!flags.no_log) {
String ver= RefondeImplementation.informationsSoftware().version;
TerminalStandard ts= new TerminalStandard();
Index: RefondeImplementation.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/refonde/RefondeImplementation.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** RefondeImplementation.java 30 Apr 2004 07:33:21 -0000 1.10
--- RefondeImplementation.java 30 Apr 2004 13:52:14 -0000 1.11
***************
*** 2791,2801 ****
protected void initConnexions(Map _r) {
FudaaDodicoTacheConnexion c=(FudaaDodicoTacheConnexion)_r.get(DCalculRefonde.class);
! CONNEXION_REFONDE=c.getPersonne();
SERVEUR_REFONDE=ICalculRefondeHelper.narrow(c.getTache());
c=(FudaaDodicoTacheConnexion)_r.get(DCalculOlb.class);
! CONNEXION_OLB=c.getPersonne();
SERVEUR_OLB=ICalculOlbHelper.narrow(c.getTache());
c=(FudaaDodicoTacheConnexion)_r.get(DCalculDunes.class);
! CONNEXION_DUNES=c.getPersonne();
SERVEUR_DUNES=ICalculDunesHelper.narrow(c.getTache());
}
--- 2791,2801 ----
protected void initConnexions(Map _r) {
FudaaDodicoTacheConnexion c=(FudaaDodicoTacheConnexion)_r.get(DCalculRefonde.class);
! CONNEXION_REFONDE=c.getConnexion();
SERVEUR_REFONDE=ICalculRefondeHelper.narrow(c.getTache());
c=(FudaaDodicoTacheConnexion)_r.get(DCalculOlb.class);
! CONNEXION_OLB=c.getConnexion();
SERVEUR_OLB=ICalculOlbHelper.narrow(c.getTache());
c=(FudaaDodicoTacheConnexion)_r.get(DCalculDunes.class);
! CONNEXION_DUNES=c.getConnexion();
SERVEUR_DUNES=ICalculDunesHelper.narrow(c.getTache());
}
|