Subversion Repositories eFlore/Applications.del

Rev

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

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

import org.tela_botanica.del.client.modeles.Commentaire;
import com.google.gwt.event.shared.GwtEvent;

public class EvenementSuppressionCommentaire extends GwtEvent<GestionnaireEvenementSuppressionCommentaire> {

        public static com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementSuppressionCommentaire> TYPE = new com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementSuppressionCommentaire>();
        private Commentaire commentaire;

        public EvenementSuppressionCommentaire(Commentaire commentaire) {
                this.commentaire = commentaire;
        }

        @Override
        protected void dispatch(GestionnaireEvenementSuppressionCommentaire handler) {
                handler.onSuppressionCommentaire(this);
        }

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

        public Commentaire getCommentaire() {
                return commentaire;
        }

        public void setPropositionDetermination(Commentaire commentaire) {
                this.commentaire = commentaire;
        }

}