List of usage examples for com.google.gwt.gwtpages.client.page.impl UiBoundPage subclass-usage
From source file com.google.gwt.gwtpages.demo.client.pages.LayoutsPage.java
public class LayoutsPage extends UiBoundPage<FlowPanel> implements ClickHandler {
@Inject
Pages pages;
@UiField
From source file com.google.gwt.gwtpages.demo.client.pages.NavigationPage.java
public class NavigationPage extends UiBoundPage<FlowPanel> implements ClickHandler {
@Inject
Pages pages;
@UiField
From source file com.google.gwt.gwtpages.demo.client.pages.RequestInfoPage.java
public class RequestInfoPage extends UiBoundPage<FlowPanel> implements ClickHandler {
@UiField
Anchor gotoPage;
@UiField
Label historyToken;
From source file com.google.gwt.gwtpages.demo.client.pages.StartPage.java
public class StartPage extends UiBoundPage<SimplePanel> { public void onConstruct(SimplePanel widget) { // we're just demonstrating the use of UiBoundWidget - all of the UiBinder boilerplate code // is automatically written for you using deferred binding StartPageWidget startPageWidget = GWT.create(StartPageWidget.class);
From source file com.google.gwt.gwtpages.demo.client.pages._404Page.java
public class _404Page extends UiBoundPage<HTMLPanel> { @Override public void onConstruct(HTMLPanel widget) { }
From source file com.google.gwt.gwtpages.demo.client.pages._500Page.java
public class _500Page extends UiBoundPage<HTMLPanel> { @Override public void onConstruct(HTMLPanel widget) { }
From source file hudson.gwtmarketplace.client.pages.MainPage.java
public class MainPage extends UiBoundPage<FlowPanel> implements FeedListener { private Top10Lists top10Lists; private boolean blogfeedLoaded = false; @UiField
From source file hudson.gwtmarketplace.client.pages.product.EditProductPage.java
public class EditProductPage extends UiBoundPage<HorizontalPanel> implements ClickHandler, SubmitCompleteHandler { interface MyUiBinder extends UiBinder<HorizontalPanel, EditProductPage> { } private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
From source file hudson.gwtmarketplace.client.pages.product.ProductSearchPage.java
public class ProductSearchPage extends UiBoundPage<FlowPanel> implements ChangeSortListener, ClickHandler { private static ProductServiceAsync productService = GWT.create(ProductService.class); private static DateTimeFormat dateFormat = DateTimeFormat.getMediumDateFormat(); private static NumberFormat ratingFormat = NumberFormat.getFormat("0.00"); private HashMap<String, String> params = new HashMap<String, String>();
From source file hudson.gwtmarketplace.client.pages.product.ViewProductPage.java
public class ViewProductPage extends UiBoundPage<FlowPanel> implements SelectionHandler<Integer>, ProductCommentHandler { private Product product; @UiField