/[classpath]/classpath/javax/swing/event/TreeModelEvent.java
ViewVC logotype

Diff of /classpath/javax/swing/event/TreeModelEvent.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.2 by gnu_andrew, Tue Aug 2 20:12:37 2005 UTC revision 1.1.2.3 by gnu_andrew, Sun Nov 27 21:00:38 2005 UTC
# Line 55  public class TreeModelEvent extends Even Line 55  public class TreeModelEvent extends Even
55          /**          /**
56           * childIndices           * childIndices
57           */           */
58          protected int[]         childIndices    = new int[0];          protected int[]         childIndices    = null;
59    
60          /**          /**
61           * children           * children
62           */           */
63          protected Object[]      children                = new Object[0];          protected Object[]      children                = null;
64    
65          /**          /**
66           * path           * path
# Line 164  public class TreeModelEvent extends Even Line 164  public class TreeModelEvent extends Even
164           * @returns String representation           * @returns String representation
165           */           */
166          public String toString() {          public String toString() {
167                  return null; // TODO                  return getClass() + " [Source: " + getSource() + ", TreePath: " + getTreePath() +
168            ", Child Indicies: " + getChildIndices() + ", Children: " + getChildren() +
169            ", Path: " + getPath() +"]";
170          } // toString()          } // toString()
171    
172    

Legend:
Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26