Subversion Repositories eFlore/Applications.del

Rev

Rev 1206 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1206 Rev 1549
Line 2... Line 2...
2
 
2
 
3
import com.google.gwt.core.client.GWT;
3
import com.google.gwt.core.client.GWT;
4
import com.google.gwt.uibinder.client.UiBinder;
4
import com.google.gwt.uibinder.client.UiBinder;
5
import com.google.gwt.uibinder.client.UiField;
5
import com.google.gwt.uibinder.client.UiField;
6
import com.google.gwt.user.client.ui.Composite;
-
 
7
import com.google.gwt.user.client.ui.HTML;
6
import com.google.gwt.user.client.ui.Composite;
8
import com.google.gwt.user.client.ui.HasWidgets;
7
import com.google.gwt.user.client.ui.HasWidgets;
9
import com.google.gwt.user.client.ui.Panel;
8
import com.google.gwt.user.client.ui.Panel;
Line 10... Line 9...
10
import com.google.gwt.user.client.ui.Widget;
9
import com.google.gwt.user.client.ui.Widget;
Line 17... Line 16...
17
	interface Binder extends UiBinder<Widget, EnteteVue> {
16
	interface Binder extends UiBinder<Widget, EnteteVue> {
18
	}
17
	}
Line 19... Line 18...
19
 
18
 
Line 20... Line -...
20
	private static Binder binder = GWT.create(Binder.class);
-
 
21
	
19
	private static Binder binder = GWT.create(Binder.class);
22
	
20
	
Line 23... Line 21...
23
	@UiField
21
	@UiField
24
	Panel zoneTitre, zoneIdentification, zoneLiens, zoneChapeau;
22
	Panel zoneIdentification, zoneLiens;
25
	
-
 
26
	public EnteteVue(String titre) {
-
 
27
		initWidget(binder.createAndBindUi(this));
-
 
28
		
-
 
29
		zoneTitre.clear();
23
	
Line 30... Line 24...
30
		HTML html = new HTML("<h1>" + titre + "</h1>");
24
	public EnteteVue() {
31
		zoneTitre.add(html);
25
		initWidget(binder.createAndBindUi(this));
32
	}
26
	}
33
 
27
 
34
	@Override
-
 
Line 35... Line 28...
35
	public HasWidgets getZoneIdentification() {
28
	@Override
36
		return zoneIdentification;
29
	public HasWidgets getZoneIdentification() {
37
	}
30
		return zoneIdentification;
38
	
31
	}
39
 
-
 
40
	@Override
-
 
41
	public HasWidgets getZoneLiens() {
-
 
42
		return zoneLiens;
-
 
43
	}
-
 
44
 
-
 
45
	@Override
-
 
46
	public HasWidgets getZoneChapeau() {
-
 
47
		return zoneChapeau;
-
 
48
	}
-
 
49
	
-
 
50
}
-
 
51
 
-
 
52
 
32
 
-
 
33
	@Override
53
 
34
	public HasWidgets getZoneLiens() {