home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2001 October / PCpro_2001_10.ISO / xml / xmlpro / data1.cab / Program_Executable_FILES / xmlpro.jar / ElemNode.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-09-15  |  530 b   |  21 lines

  1. import java.util.Vector;
  2. import javax.swing.tree.DefaultMutableTreeNode;
  3. import org.w3c.dom.Node;
  4.  
  5. public class ElemNode extends DefaultMutableTreeNode {
  6.    // $FF: renamed from: e org.w3c.dom.Node
  7.    Node field_0;
  8.  
  9.    ElemNode(Node var1) {
  10.       this.field_0 = var1;
  11.    }
  12.  
  13.    Vector childrenVector() {
  14.       return super.children;
  15.    }
  16.  
  17.    public String toString() {
  18.       return this.field_0.toString();
  19.    }
  20. }
  21.