Here you can find the source of findV2MetaTreeNode( String nodeXmlPath)
public static DefaultMutableTreeNode findV2MetaTreeNode( String nodeXmlPath)
//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); } }