Subversion Repositories eFlore/Applications.del

Rev

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

Rev 73 Rev 147
Line 1... Line 1...
1
package org.tela_botanica.del.client.navigation.evenement.validationobservation;
1
package org.tela_botanica.del.client.navigation.evenement.validationobservation;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
import org.tela_botanica.del.client.modeles.Observation;
3
import org.tela_botanica.del.client.modeles.Image;
Line 4... Line 4...
4
 
4
 
Line 5... Line 5...
5
import com.google.gwt.event.shared.GwtEvent;
5
import com.google.gwt.event.shared.GwtEvent;
Line 6... Line 6...
6
 
6
 
Line 7... Line 7...
7
public class EvenementValidation extends GwtEvent<GestionnaireEvenementValidation> {
7
public class EvenementValidation extends GwtEvent<GestionnaireEvenementValidation> {
8
 
8
 
9
	public static com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementValidation> TYPE = new com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementValidation>();
9
	public static com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementValidation> TYPE = new com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementValidation>();
Line 10... Line 10...
10
 
10
 
11
	private final Observation observation;
11
	private final Image image;
12
 
12
 
Line 22... Line 22...
22
	@Override
22
	@Override
23
	public com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementValidation> getAssociatedType() {
23
	public com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementValidation> getAssociatedType() {
24
		return TYPE;
24
		return TYPE;
25
	}
25
	}
Line 26... Line 26...
26
 
26
 
27
	public Observation getImageCel() {
27
	public Image getImage() {
28
		return observation;
28
		return image;
Line 29... Line 29...
29
	}
29
	}