Java JTree Path findV2MetaTreeNode( String nodeXmlPath)

Here you can find the source of findV2MetaTreeNode( String nodeXmlPath)

Description

find V Meta Tree Node

License

BSD License

Declaration

public static DefaultMutableTreeNode findV2MetaTreeNode(
            String nodeXmlPath) 

Method Source Code

//package com.java2s;
/*L//from w  w w . j av a2 s. c  o  m
 * Copyright SAIC, SAIC-Frederick.
 *
 * Distributed under the OSI-approved BSD 3-Clause License.
 * See http://ncip.github.com/caadapter/LICENSE.txt for details.
 */

import java.util.Hashtable;
import javax.swing.tree.DefaultMutableTreeNode;

public class Main {
    private static Hashtable<String, DefaultMutableTreeNode> elementNodehash;

    public static DefaultMutableTreeNode findV2MetaTreeNode(
            String nodeXmlPath) {
        return elementNodehash.get(nodeXmlPath);
    }
}

Related

  1. createTreePathFromTreeNode(TreeNode treeNode)
  2. doNode(JTree tree, TreeNode parentNode, TreePath parentPath)
  3. find2(JTree tree, TreePath parent, Object[] nodes, int depth, boolean byName)
  4. findOrAddNode(JTree tree, TreePath parent, String packageName)
  5. findTreePath(TreePath path, TreeNode node, String pathName)
  6. getDepth(JTree tree)
  7. getExpatnedTreePaths(JTree tree)
  8. getObjectPathForNode(final TreeNode node)
  9. getPath(TreeNode node)