Rev 60 | Rev 66 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.client;
import org.tela_botanica.client.modeles.Configuration;
import com.extjs.gxt.ui.client.GXT;
import com.extjs.gxt.ui.client.Registry;
import com.extjs.gxt.ui.client.util.Theme;
import com.google.gwt.core.client.EntryPoint;
/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class Coel implements EntryPoint {
/**
* This is the entry point method.
*/
public void onModuleLoad() {
GXT.setDefaultTheme(Theme.GRAY, true);
GXT.hideLoadingPanel("loading");
Registry.register(RegistreId.APPLI_NOM, "Collections en ligne");
Registry.register(RegistreId.APPLI_CODE, "COEL");
Registry.register(RegistreId.APPLI_VERSION, "0.1");
Registry.register(RegistreId.APPLI_REVISION, "$Revision: 64 $");
Registry.register(RegistreId.CONFIG, new Configuration());
new Mediateur();
}
}