Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 268 → Rev 269

/trunk/src/org/tela_botanica/del/client/composants/pagination/PaginationVue.java
3,6 → 3,7
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.HorizontalPanel;
import com.google.gwt.user.client.ui.ListBox;
14,10 → 15,11
HorizontalPanel zoneLiens;
 
@UiField
ListBox nbElements;
ListBox selecteurPas;
@UiField
Button boutonPrecedent, boutonSuivant;
 
// Annotation can be used to change the name of the associated xml file
// @UiTemplate("PaginationVue.ui.xml")
interface MyUiBinder extends UiBinder<Widget, PaginationVue> {
}
 
27,11 → 29,4
initWidget(uiBinder.createAndBindUi(this));
}
 
public HorizontalPanel getZoneLiens() {
return this.zoneLiens;
}
 
public ListBox getNbElements() {
return nbElements;
}
}