Subversion Repositories eFlore/Applications.del

Rev

Rev 1501 | Rev 1561 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1501 Rev 1517
Line 6... Line 6...
6
import com.google.gwt.core.client.EntryPoint;
6
import com.google.gwt.core.client.EntryPoint;
7
import com.google.gwt.core.client.GWT;
7
import com.google.gwt.core.client.GWT;
8
import com.google.gwt.core.client.GWT.UncaughtExceptionHandler;
8
import com.google.gwt.core.client.GWT.UncaughtExceptionHandler;
9
import com.google.gwt.event.shared.UmbrellaException;
9
import com.google.gwt.event.shared.UmbrellaException;
10
import com.google.gwt.user.client.History;
10
import com.google.gwt.user.client.History;
-
 
11
import com.google.gwt.user.client.Timer;
11
import com.google.gwt.user.client.Window;
12
import com.google.gwt.user.client.Window;
Line 12... Line 13...
12
 
13
 
Line 13... Line 14...
13
public class Del implements EntryPoint {
14
public class Del implements EntryPoint {
Line 26... Line 27...
26
				Window.alert(s);
27
				Window.alert(s);
27
				e.printStackTrace();
28
				e.printStackTrace();
28
			}
29
			}
29
		});*/
30
		});*/
Line 30... Line 31...
30
 
31
 
31
		CacheClient.getInstance().initialiserAvecParametres();
-
 
32
			
32
		CacheClient.getInstance().initialiserAvecParametres();	
-
 
33
		History.addValueChangeHandler(new GestionnaireHistorique());	
33
		History.addValueChangeHandler(new GestionnaireHistorique());
34
		History.newItem(CacheClient.getInstance().getPageCourante());
34
		History.fireCurrentHistoryState();
35
		History.fireCurrentHistoryState();
Line 35... Line 36...
35
	}
36
	}
36
	
37