Subversion Repositories eFlore/Applications.cel

Rev

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

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