Example usage for javax.swing.tree TreeNode interface-usage

List of usage examples for javax.swing.tree TreeNode interface-usage

Introduction

In this page you can find the example usage for javax.swing.tree TreeNode interface-usage.

Usage

From source file org.hippoecm.frontend.model.tree.LabelTreeNode.java

public class LabelTreeNode implements TreeNode, Serializable {

    private static final long serialVersionUID = 1L;

    private TreeNode parentNode;
    private IModel<String> label;

From source file com.hp.alm.ali.idea.entity.tree.EntityNode.java

public class EntityNode implements TreeNode, Comparable<EntityNode> {
    private int ordering;
    private HierarchicalEntityModel model;
    private EntityNode parent;

    private Entity entity;

From source file org.artifactory.common.wicket.model.sitemap.MenuNode.java

/**
 * @author Yoav Aharoni
 */
public class MenuNode implements TreeNode, Serializable {
    private final Class<? extends Page> pageClass;
    private final String name;

From source file nl.salp.warcraft4j.dev.ui.CascFileTreeNode.java

/**
 * TODO Document class.
 *
 * @author Barre Dijkstra
 */
public class CascFileTreeNode implements TreeNode, Comparable<CascFileTreeNode> {

From source file osmcd.program.model.Atlas.java

@XmlRootElement
public class Atlas implements AtlasInterface, ToolTipProvider, TreeNode {

    public static final int CURRENT_ATLAS_VERSION = 1;

    @XmlAttribute

From source file mobac.program.model.Atlas.java

@XmlRootElement
public class Atlas implements AtlasInterface, ToolTipProvider, TreeNode {

    public static final int CURRENT_ATLAS_VERSION = 1;

    @XmlAttribute

From source file Main.java

class Node implements TreeNode {

    private Node parent;
    private List<Node> children;
    public String name;

From source file mobac.program.model.Map.java

public class Map implements MapInterface, ToolTipProvider, CapabilityDeletable, TreeNode, DownloadableElement {

    protected String name;

    protected Layer layer;

From source file osmcd.program.model.Map.java

public class Map implements MapInterface, ToolTipProvider, CapabilityDeletable, TreeNode, DownloadableElement {

    protected String name;

    protected Layer layer;

From source file odml.core.Value.java

/**
 * {@link Value} entities contain the values associated with a {@link Property}.
 * Values have the following fields:
 * <ol>
 * <li>value - mandatory, its the value = content itself.</li>
 * <li>uncertainty - optional, an estimation of the value's uncertainty.</li>