Example usage for com.google.gwt.user.client.ui TreeListener interface-usage

List of usage examples for com.google.gwt.user.client.ui TreeListener interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui TreeListener interface-usage.

Usage

From source file com.audata.client.admin.ClassificationPanel.java

/**
 * Classification administration panel
 * @author jonm
 *
 */
public class ClassificationPanel extends VerticalPanel implements TreeListener, ClickListener, UpdateListener {

From source file com.audata.client.admin.KeywordPanel.java

/**
 * The Keyword Hierarchy Admin panel
 * @author jonm
 *
 */
public class KeywordPanel extends VerticalPanel

From source file com.audata.client.classification.ClassBrowser.java

public class ClassBrowser extends VerticalPanel implements TreeListener {

    private static final Language LANG = (Language) GWT.create(Language.class);
    public Tree classes;
    private TreeItem selected;
    private Label loading;

From source file com.audata.client.classification.PopUpClassBrowser.java

public class PopUpClassBrowser extends DialogBox implements TreeListener, ClickListener {

    private static final Language LANG = (Language) GWT.create(Language.class);
    private ClassBrowser cp;
    private TextBox cName;
    private String uuid;

From source file com.audata.client.Keyword.KeywordBrowser.java

public class KeywordBrowser extends VerticalPanel implements TreeListener {

    private static final Language LANG = (Language) GWT.create(Language.class);
    public String hierarchy;
    public Tree keywords;
    private TreeItem selected;

From source file com.audata.client.Keyword.PopUpKeywordBrowser.java

public class PopUpKeywordBrowser extends DialogBox implements TreeListener, ClickListener {

    private static final Language LANG = (Language) GWT.create(Language.class);
    private KeywordBrowser cp;
    private TextBox cName;
    private String uuid;

From source file com.audata.client.search.SearchPanel.java

public class SearchPanel extends VerticalPanel implements TreeListener, ClickListener {
    private static final Language LANG = (Language) GWT.create(Language.class);
    private AuDoc audoc;

    private Tree fieldsTree;

From source file com.google.gwt.sample.kitchensink.client.Trees.java

/**
 * Demonstrates the {@link com.google.gwt.user.client.ui.Tree} widget.
 */
public class Trees extends Sink implements TreeListener {

    private static class PendingItem extends TreeItem {

From source file com.sun.labs.aura.music.admin.client.WorkbenchPanel.java

/**
 *
 * @author plamere
 */
public class WorkbenchPanel extends Composite implements TreeListener {

From source file org.drools.brms.client.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 TreeListener {