Subversion Repositories eFlore/Archives.cel-v1

Compare Revisions

Ignore whitespace Rev 31 → Rev 30

/trunk/src/org/tela_botanica/client/CarnetEnLigneMediateur.java
File deleted
/trunk/src/org/tela_botanica/client/CarnetEnLigne.java
File deleted
/trunk/src/org/tela_botanica/client/CarnetEnLigneModele.java
File deleted
/trunk/src/org/tela_botanica/client/Cel.java
New file
0,0 → 1,47
/**
David Delon david.delon@clapas.net 2007
*/
 
/*
* Cel.java (Point d'entree de l'application carnet en ligne)
*
* Cas d'utilisation :
* Initialisation de l'application
*
* 1: Le programme initialise la classe intercesseur (mediator), classe ou sont decrites les actions de l'application.
* 2: Le programme s'enregistre aupres de la classe intercesseur
* 3: Le programme recherche les informations de connections (utilisateur ou anonyme)
* 4: Le programme initialise les differents panneaux composant l'affichage
*
*/
 
package org.tela_botanica.client;
 
 
import com.google.gwt.core.client.EntryPoint;
 
 
 
/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class Cel implements EntryPoint {
 
public void onModuleLoad() {
 
new Mediator();
 
}
 
}
 
/* +--Fin du code ---------------------------------------------------------------------------------------+
* $Log$
* Revision 1.10 2007-09-17 19:25:34 ddelon
* Documentation
*
*
*/
/trunk/src/org/tela_botanica/client/LocationFilterView.java
38,6 → 38,9
import net.mygwt.ui.client.widget.tree.Tree;
 
/**
* A tree displaying a set of email folders.
*/
public class LocationFilterView {
/trunk/src/org/tela_botanica/client/Util.java
5,7 → 5,7
public Util() {
}
 
public static String toCelString(String str) {
static String toCelString(String str) {
return str.substring(1,str.length()-1);
//
}
/trunk/src/org/tela_botanica/client/InventoryListView.java
5,7 → 5,7
 
 
/*
* ListeObservationsVue.java (Composite de Panel)
* InventoryListView.java (Composite de Panel)
*
* Cas d'utilisation :
*
894,9 → 894,6
 
/* +--Fin du code ---------------------------------------------------------------------------------------+
* $Log$
* Revision 1.3 2008-04-28 13:10:43 ddelon
* Integration MyGwt
*
* Revision 1.2 2008-01-30 08:55:40 ddelon
* fin mise en place mygwt
*
/trunk/src/org/tela_botanica/Cel.gwt.xml
10,5 → 10,5
<!-- MyGwt -->
<inherits name='net.mygwt.ui.MyGWT'/> -->
<!-- Specify the app entry point class. -->
<entry-point class='org.tela_botanica.client.CarnetEnLigne'/>
<entry-point class='org.tela_botanica.client.Cel'/>
</module>