Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1029 Rev 1030
Line 1... Line 1...
1
package org.tela_botanica.cel.client.vues.observation.listeobservations;
1
package org.tela_botanica.cel.client.vues.observation.listeobservation;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
import org.tela_botanica.cel.client.modeles.Observation;
3
import org.tela_botanica.cel.client.modeles.Observation;
4
 
4
 
Line 27... Line 27...
27
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
27
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
Line 28... Line 28...
28
	
28
	
29
	@UiField(provided = true)
29
	@UiField(provided = true)
30
	CellTable<Observation> tableauObservation;
30
	CellTable<Observation> tableauObservation;
31
	@UiField(provided = true)
31
	@UiField(provided = true)
Line 32... Line 32...
32
	FlowPanel panneauPagination;
32
	FlowPanel panneauPagination, panneauBarreOutils;
33
	
33
	
Line 34... Line 34...
34
	Column<Observation, String> transmis, nomSaisi, nomRetenu, lieu, date ,ordre; 
34
	Column<Observation, String> transmis, nomSaisi, nomRetenu, lieu, date ,ordre; 
Line 42... Line 42...
42
	      }
42
	      }
43
	};
43
	};
Line 44... Line 44...
44
 
44
 
45
	public ListeObservationVue() {		
45
	public ListeObservationVue() {		
-
 
46
		tableauObservation = new CellTable<Observation>();
-
 
47
		
46
		tableauObservation = new CellTable<Observation>();
48
		// en attendant qu'il y a quelque chose à y mettre
-
 
49
		panneauPagination = new FlowPanel();
47
		panneauPagination = new FlowPanel();
50
		panneauBarreOutils = new FlowPanel();
Line 48... Line 51...
48
		initialiserTable();
51
		initialiserTable();
49
		
52