Here you can find the source of getTreePathString(TreePath path)
private static String getTreePathString(TreePath path)
//package com.java2s; //License from project: Apache License import javax.swing.tree.TreePath; public class Main { private static String getTreePathString(TreePath path) { return path.toString(); }// w w w .jav a2 s .c o m }