Rev 2 | Blame | Last modification | View Log | RSS feed
package org.tela_botanica.client;
import org.tela_botanica.client.image.ImageMediateur;
import com.google.gwt.core.client.EntryPoint;
import com.gwtext.client.widgets.Viewport;
/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class cel2 implements EntryPoint {
/**
* This is the entry point method.
*/
public void onModuleLoad() {
ImageMediateur im = ImageMediateur.Instance();
new Viewport(im.getPanneauPrincipalImage());
}
}