Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 aperonnet 1
package org.tela_botanica.client;
2
 
3
import org.tela_botanica.client.image.ImageMediateur;
4
 
5
import com.google.gwt.core.client.EntryPoint;
6
import com.gwtext.client.widgets.Viewport;
7
 
8
/**
9
 * Entry point classes define <code>onModuleLoad()</code>.
10
 */
11
public class cel2 implements EntryPoint {
12
 
13
  /**
14
   * This is the entry point method.
15
   */
16
  public void onModuleLoad() {
17
 
18
	  ImageMediateur im = ImageMediateur.Instance() ;
19
 
20
	  new Viewport(im.getPanneauPrincipalImage());
21
  }
22
}