home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / main.bin / MyTreeNode.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-08-05  |  556 b   |  17 lines

  1. package symantec.descfileconverter;
  2.  
  3. import symantec.itools.awt.TreeNode;
  4.  
  5. class MyTreeNode extends TreeNode {
  6.    private String fullPath;
  7.  
  8.    MyTreeNode(String var1, String var2) {
  9.       super(var1);
  10.       this.fullPath = new String(var2);
  11.    }
  12.  
  13.    String getFullPath() {
  14.       return this.fullPath;
  15.    }
  16. }
  17.