List of usage examples for com.google.gwt.user.client.ui UIObject subclass-usage
From source file com.alkacon.forms.client.widgets.A_EditWidget.java
/** * Abstract editing widget class.<p> */ public abstract class A_EditWidget extends UIObject implements I_EditWidget, EventListener { /** The handler manager. */
From source file com.bearsoft.gwt.ui.RadioGroup.java
/** * * @author mg */ public class RadioGroup extends UIObject implements ValueChangeHandler<Boolean> {
From source file com.conx.logistics.kernel.ui.common.gwt.client.ui.VConXQuickLaunchMenuItem.java
/**
* A widget that can be placed in a
* {@link com.google.gwt.user.client.ui.MenuBar}. Menu items can either fire a
* {@link com.google.gwt.user.client.Command} when they are clicked, or open a
* cascading sub-menu.
*
From source file com.conx.logistics.kernel.ui.vaadin.common.gwt.client.ui.VConXQuickLaunchMenuItem.java
/**
* A widget that can be placed in a
* {@link com.google.gwt.user.client.ui.MenuBar}. Menu items can either fire a
* {@link com.google.gwt.user.client.Command} when they are clicked, or open a
* cascading sub-menu.
*
From source file com.eas.ui.RadioGroup.java
/** * * @author mg */ public class RadioGroup extends UIObject implements ValueChangeHandler<Boolean> {
From source file com.google.gwt.sample.stockwatcher.client.HelloWorld.java
public class HelloWorld extends UIObject { // Could extend Widget instead interface MyUiBinder extends UiBinder<DivElement, HelloWorld> { } private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
From source file com.jitlogic.zico.widgets.client.MenuItem.java
public class MenuItem extends UIObject { private boolean enabled = true; private MenuBar.Resources resources;
From source file com.qualogy.qafe.gwt.client.component.AreaWidget.java
public class AreaWidget extends UIObject { private Command command; public AreaWidget() { setElement(DOM.createElement("area")); DOM.setElementAttribute(getElement(), "href", "#");
From source file com.tensegrity.wpalo.client.ui.mvc.fasttree.FastMSTreeItem.java
/**
* An item that can be contained within a
* {@link com.google.gwt.widgetideas.client.FastTree}.
* <p>
* <h3>Example</h3> {@example com.google.gwt.examples.TreeExample}
*/
From source file com.tractionsoftware.gwt.user.client.util.DomUtils.java
/**
* Created for a uniform implementation of HasEnabled, but will be
* useful in the future for other DOM related things.
*
* <p>This is a subclass of UIObject to gain access to the useful
* setStyleName method of UIObject which is implemented as protected.