Subversion Repositories eFlore/Applications.coel

Rev

Rev 64 | Rev 116 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 64 Rev 66
1
package org.tela_botanica.client;
1
package org.tela_botanica.client;
2
 
2
 
3
import org.tela_botanica.client.modeles.Configuration;
3
import org.tela_botanica.client.modeles.Configuration;
4
 
4
 
5
import com.extjs.gxt.ui.client.GXT;
5
import com.extjs.gxt.ui.client.GXT;
6
import com.extjs.gxt.ui.client.Registry;
6
import com.extjs.gxt.ui.client.Registry;
7
import com.extjs.gxt.ui.client.util.Theme;
7
import com.extjs.gxt.ui.client.util.Theme;
8
import com.google.gwt.core.client.EntryPoint;
8
import com.google.gwt.core.client.EntryPoint;
9
 
9
 
10
/**
10
/**
11
 * Entry point classes define <code>onModuleLoad()</code>.
11
 * Entry point classes define <code>onModuleLoad()</code>.
12
 */
12
 */
13
public class Coel implements EntryPoint {
13
public class Coel implements EntryPoint {
14
	
14
	
15
	/**
15
	/**
16
	 * This is the entry point method.
16
	 * This is the entry point method.
17
	 */
17
	 */
18
	public void onModuleLoad() {
18
	public void onModuleLoad() {
19
		GXT.setDefaultTheme(Theme.GRAY, true);
19
		GXT.setDefaultTheme(Theme.GRAY, true);
20
		GXT.hideLoadingPanel("loading");
20
		GXT.hideLoadingPanel("loading");
21
		
21
		
22
		Registry.register(RegistreId.APPLI_NOM, "Collections en ligne");
22
		Registry.register(RegistreId.APPLI_NOM, "Collections en ligne");
23
		Registry.register(RegistreId.APPLI_CODE, "COEL");
23
		Registry.register(RegistreId.APPLI_CODE, "COEL");
24
		Registry.register(RegistreId.APPLI_VERSION, "0.1");
24
		Registry.register(RegistreId.APPLI_VERSION, "0.1");
25
		Registry.register(RegistreId.APPLI_REVISION, "$Revision: 64 $");
25
		Registry.register(RegistreId.APPLI_REVISION, "$Revision: 66 $");
26
		Registry.register(RegistreId.CONFIG, new Configuration());
26
		Registry.register(RegistreId.CONFIG, new Configuration());
-
 
27
 
27
		new Mediateur();
28
		new Mediateur();
28
	}
29
	}
29
}
30
}