Subversion Repositories eFlore/Applications.del

Rev

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

package org.tela_botanica.del.client.composants.presenteur;

import com.google.gwt.core.client.GWT;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.HTMLPanel;
import com.google.gwt.user.client.ui.Widget;

public class PresenteurVue extends Composite {

        // Annotation can be used to change the name of the associated xml file
        // @UiTemplate("ObservationRechercheVue.ui.xml")
        interface MyUiBinder extends UiBinder<Widget, PresenteurVue> {
        }

        @UiField
        HTMLPanel overlay, overlayContenu;

        @UiField
        Button boutonFermer;

        private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);

        protected PresenteurVue() {
                initWidget(uiBinder.createAndBindUi(this));
        }
}