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.gestionhistorique;

import org.tela_botanica.cel.client.vues.general.CelPanneauPrincipalPresenteur;
import org.tela_botanica.cel.client.vues.general.CelPanneauPrincipalVue;

import com.google.gwt.event.logical.shared.ValueChangeEvent;
import com.google.gwt.event.logical.shared.ValueChangeHandler;
import com.google.gwt.user.client.ui.RootPanel;

public class GestionnaireHistorique implements ValueChangeHandler<String> {

        public void onValueChange(ValueChangeEvent<String> event) {
                CelPanneauPrincipalPresenteur celPanneauPrincipalPresenteur = new CelPanneauPrincipalPresenteur(new CelPanneauPrincipalVue());
                celPanneauPrincipalPresenteur.go(RootPanel.get());
        }
}