List of usage examples for com.google.gwt.user.client.ui HTMLPanel subclass-usage
From source file it.unibo.cs.v2.client.NewMachineWizard.java
public class NewMachineWizard extends HTMLPanel implements AsyncCallback<LinkedList<HashMap<String, String>>>, ClickHandler, Wizard { private final GetIsoListAsync getIsoListProxy = (GetIsoListAsync) GWT.create(GetIsoList.class); private final CreateMachineAsync createMachineProxy = (CreateMachineAsync) GWT.create(CreateMachine.class); private final ListBox isoListBox = new ListBox();
From source file it.unibo.cs.v2.client.PrebuiltWizard.java
public class PrebuiltWizard extends HTMLPanel implements Wizard { private GetPrebuiltMachinesAsync getPrebuiltMachinesProxy = GWT.create(GetPrebuiltMachines.class); private ImportMachineAsync importMachineProxy = GWT.create(ImportMachine.class); public PrebuiltWizard() { super("<h2>Import an existing machine</h2>");
From source file it.unibo.cs.v2.client.RegistrationForm.java
public class RegistrationForm extends HTMLPanel implements ClickHandler, KeyUpHandler { private final TextBox username = new TextBox(); private final TextBox displayname = new TextBox(); private final Button submitButton = new Button("Register"); private final PasswordTextBox password = new PasswordTextBox(); private final FlexTable mainTable = new FlexTable();
From source file net.europa13.taikai.web.client.ui.ListNavigator.java
/** * * @author daniel */ public class ListNavigator extends HTMLPanel {
From source file net.europa13.taikai.web.client.ui.MainPanel.java
/** * * @author Daniel Wentzel */ public class MainPanel extends HTMLPanel {
From source file net.europa13.taikai.web.client.ui.SidePanel.java
/** * * @author daniel */ public class SidePanel extends HTMLPanel {
From source file net.scran24.user.client.survey.foodlist.LookupFoodListItem.java
public class LookupFoodListItem extends HTMLPanel { private final String description; private EncodedFood resolved = null; public LookupFoodListItem(final String description) { super(description);
From source file nz.co.doltech.gwt.sdm.ui.Paragraph.java
public class Paragraph extends HTMLPanel { public Paragraph() { super(ParagraphElement.TAG, ""); }
From source file org.ajax4jsf.gwt.client.ui.FacetPanel.java
/**
* Extension of {@link HTMLPanel} for wrap html element with rendered content
* of jsf component ( in most cases, will be used with {@link org.ajax4jsf.gwt.jsf.WidgetWithFacetsRenderer} for
* wrap rendered facet or children components.
* @author shura
*
From source file org.cruxframework.crux.core.client.screen.views.ViewPanel.java
/** * @author Thiago da Rosa de Bustamante * */ public class ViewPanel extends HTMLPanel { public ViewPanel(SafeHtml safeHtml) {