Subversion Repositories eFlore/Applications.cel

Rev

Rev 1024 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

package org.tela_botanica.cel.client.vues.image;

import com.google.gwt.user.client.ui.HasWidgets;

public class PanneauPrincipalImagePresenteur {

        public interface Vue {
                void ajouterAuParent(HasWidgets parent);
        }
        
        private Vue vue;
        
        public PanneauPrincipalImagePresenteur(Vue vue) {
                this.vue = vue;
        }
        
        public void go(HasWidgets parent) {
                vue.ajouterAuParent(parent);
        }
}