Example usage for com.google.gwt.event.logical.shared OpenHandler interface-usage

List of usage examples for com.google.gwt.event.logical.shared OpenHandler interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.logical.shared OpenHandler interface-usage.

Usage

From source file org.drools.guvnor.client.explorer.navigation.qa.QATree.java

public class QATree extends NavigationItemBuilderOld implements OpenHandler<TreeItem> {

    private final PlaceController placeController;

    public QATree(PlaceController placeController) {

From source file org.drools.guvnor.client.explorer.PackagesTree.java

public class PackagesTree extends AbstractTree implements OpenHandler<TreeItem> {

    private static Constants constants = GWT.create(Constants.class);
    private static Images images = GWT.create(Images.class);

    private boolean packagesLoaded = false;

From source file org.drools.guvnor.client.explorer.QATree.java

public class QATree extends AbstractTree implements OpenHandler<TreeItem> {
    private static Constants constants = GWT.create(Constants.class);
    private static Images images = (Images) GWT.create(Images.class);

    public QATree() {
        this.name = constants.QA1();

From source file org.drools.guvnor.client.widgets.categorynav.CategoryExplorerWidget.java

/**
 * This is a rule/resource navigator that uses the server side categories to
 * navigate the repository. Uses the the
 * {@link com.google.gwt.user.client.ui.Tree} widget.
 */
public class CategoryExplorerWidget extends Composite implements SelectionHandler<TreeItem>, OpenHandler<TreeItem> {

From source file org.eobjects.datacleaner.monitor.shared.widgets.SchemaTree.java

/**
 * A tree widget that displays the schema tree of a Datastore.
 */
public class SchemaTree extends Tree implements OpenHandler<TreeItem> {

    private static final SafeHtml LOADING_ITEM_TEXT = SafeHtmlUtils.fromString("Loading...");

From source file org.gss_project.gss.web.client.Groups.java

/**
 * A component that displays a list of the user's groups.
 */
public class Groups extends Composite implements SelectionHandler, OpenHandler {

    /**

From source file org.jboss.as.console.client.shared.homepage.ContentBox.java

/**
 * A content box on the homepage.
 *
 * @author Harald Pehl
 */
public class ContentBox extends Composite implements OpenHandler<DisclosurePanel>, CloseHandler<DisclosurePanel> {

From source file org.opencms.gwt.client.ui.tree.I_CmsLazyOpenHandler.java

/**
 * Lazy tree open handler interface.<p>
 * 
 * @param <I> the specific lazy tree item implementation 
 * 
 * @since 8.0.0

From source file org.opendatakit.aggregate.client.handlers.RefreshOpenHandler.java

public class RefreshOpenHandler<T> implements OpenHandler<T> {
    @Override
    public void onOpen(OpenEvent<T> event) {
        AggregateUI.resize();
    }