List of usage examples for com.google.gwt.user.client.ui Button subclass-usage
From source file net.sf.mmm.client.ui.gwt.widgets.ButtonWidget.java
/**
* This is a variant of {@link Button} with custom settings (using {@link CssStyles#BUTTON}). For security the
* {@link #ButtonWidget(String) string constructor} treats the input as text instead of HTML.
*
* @author Joerg Hohwiller (hohwille at users.sourceforge.net)
* @since 1.0.0
From source file net.sf.mmm.client.ui.gwt.widgets.CollapseExpandButton.java
/**
* A {@link CollapseExpandButton} is a {@link Button} used to {@link #setCollapsed(boolean) collapse and
* expand} a section that is typically located below it.
*
* @author Joerg Hohwiller (hohwille at users.sourceforge.net)
* @since 1.0.0
From source file net.sf.mmm.client.ui.gwt.widgets.SimpleToggleButton.java
/**
* This is a simple GWT toggle button. Unlike {@link com.google.gwt.user.client.ui.ToggleButton} it does not
* contain internal hacks such as a text input. It is completely styled with CSS and needs no temporary hover
* styles or different down/up icons.
*
* @author Joerg Hohwiller (hohwille at users.sourceforge.net)
From source file org.activityinfo.ui.client.widget.ButtonWithSize.java
/** * Subclass of {@link com.google.gwt.user.client.ui.Button} that applies our application styles * * @author yuriyz on 3/14/14. */ public class ButtonWithSize extends com.google.gwt.user.client.ui.Button {
From source file org.ajax4jsf.gwt.client.ui.JSFButton.java
/** * Button able to submit Jsf form to client, same as HtmlCommandButton . * @author shura * */ public class JSFButton extends Button {
From source file org.cee.webreader.client.list.ListItemButton.java
public class ListItemButton extends Button implements ListItemView {
}
From source file org.datacleaner.monitor.shared.widgets.CancelPopupButton.java
/** * A simple cancel button that will hide a popup. */ public class CancelPopupButton extends Button implements ClickHandler { private final DCPopupPanel _popup;
From source file org.drools.guvnor.client.explorer.navigation.qa.testscenarios.AddExecuteButton.java
public class AddExecuteButton extends Button { public AddExecuteButton(final Scenario scenario, final ScenarioWidget parent) { super(Constants.INSTANCE.MoreDotDot()); setTitle(Constants.INSTANCE.AddAnotherSectionOfDataAndExpectations());
From source file org.drools.guvnor.client.qa.testscenarios.AddExecuteButton.java
/** * * @author rikkola * */ public class AddExecuteButton extends Button {
From source file org.drools.workbench.screens.testscenario.client.AddExecuteButton.java
public class AddExecuteButton extends Button { public AddExecuteButton(final Scenario scenario, final ScenarioParentWidget parent) { super(TestScenarioConstants.INSTANCE.MoreDotDot()); setTitle(TestScenarioConstants.INSTANCE.AddAnotherSectionOfDataAndExpectations());