Subversion Repositories eFlore/Applications.del

Rev

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

package org.tela_botanica.del.client.navigation.evenement.depublierObs;

import org.tela_botanica.del.client.navigation.evenement.depublierObs.GestionnaireEvenementDepublierObs;
import com.google.gwt.event.shared.GwtEvent;

public class EvenementDepublierObs extends GwtEvent<GestionnaireEvenementDepublierObs>{
        public static com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementDepublierObs> TYPE = new com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementDepublierObs>();
        private String idObs;

        public EvenementDepublierObs(String idObs) {
                this.idObs = idObs;
        }

        @Override
        protected void dispatch(GestionnaireEvenementDepublierObs handler) {
                handler.onDepublicationObs(this);
        }

        public String getIdObs() {
                return idObs;
        }

        @Override
        public com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementDepublierObs> getAssociatedType() {
                return TYPE;
        }
}