Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

VjGUI
Class ChunkOrgTree  view ChunkOrgTree download ChunkOrgTree.java

java.lang.Object
  extended byVjGUI.ChunkOrgTree

public class ChunkOrgTree
extends java.lang.Object


Field Summary
(package private)  java.io.File file
           
(package private)  java.util.Vector listeners
           
(package private)  java.lang.String name
           
 OrgTreeElem root
           
 
Constructor Summary
ChunkOrgTree()
           
 
Method Summary
 void addActionListener(java.awt.event.ActionListener l)
           
 void copyValueFrom(ChunkOrgTree ot)
           
 java.io.File getFile()
           
 java.lang.String getName()
           
 void processActionEvent(java.awt.event.ActionEvent e)
           
 boolean read(VjConfig.ConfigStreamTokenizer st)
           
 void removeActionListener(java.awt.event.ActionListener l)
           
 void setFile(java.io.File f)
           
 void setName(java.lang.String s)
           
 void setRoot(OrgTreeElem _root)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

root

public OrgTreeElem root

listeners

java.util.Vector listeners

name

java.lang.String name

file

java.io.File file
Constructor Detail

ChunkOrgTree

public ChunkOrgTree()
Method Detail

copyValueFrom

public void copyValueFrom(ChunkOrgTree ot)

setRoot

public void setRoot(OrgTreeElem _root)

addActionListener

public void addActionListener(java.awt.event.ActionListener l)

removeActionListener

public void removeActionListener(java.awt.event.ActionListener l)

processActionEvent

public void processActionEvent(java.awt.event.ActionEvent e)

setName

public void setName(java.lang.String s)

setFile

public void setFile(java.io.File f)

getName

public java.lang.String getName()

getFile

public java.io.File getFile()

read

public boolean read(VjConfig.ConfigStreamTokenizer st)

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).