Subversion Repositories eFlore/Applications.del

Rev

Rev 1689 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1689 jpm 1
package org.tela_botanica.del.client.navigation.evenement.depublierObs;
2
 
3
import org.tela_botanica.del.client.navigation.evenement.depublierObs.GestionnaireEvenementDepublierObs;
4
import com.google.gwt.event.shared.GwtEvent;
5
 
6
public class EvenementDepublierObs extends GwtEvent<GestionnaireEvenementDepublierObs>{
7
	public static com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementDepublierObs> TYPE = new com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementDepublierObs>();
8
	private String idObs;
9
 
10
	public EvenementDepublierObs(String idObs) {
11
		this.idObs = idObs;
12
	}
13
 
14
	@Override
15
	protected void dispatch(GestionnaireEvenementDepublierObs handler) {
16
		handler.onDepublicationObs(this);
17
	}
18
 
19
	public String getIdObs() {
20
		return idObs;
21
	}
22
 
23
	@Override
24
	public com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementDepublierObs> getAssociatedType() {
25
		return TYPE;
26
	}
27
}