classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cp-patches] RFC: TreeSelectionEvent


From: Ka-Hing Cheung
Subject: Re: [cp-patches] RFC: TreeSelectionEvent
Date: Sat, 4 Jun 2005 23:41:06 -0700
User-agent: Mutt/1.5.6+20040907i

Per Michael Koch's suggestion, breaking it into 2 patches, here's the first
one with format changes.

20050604  Ka-Hing Cheung <address@hidden>

     * javax/swing/event/TreeSelectionEvent: Reformat.

Index: javax/swing/event/TreeSelectionEvent.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/javax/swing/event/TreeSelectionEvent.java,v
retrieving revision 1.3
diff -u -r1.3 TreeSelectionEvent.java
--- javax/swing/event/TreeSelectionEvent.java   22 Oct 2004 12:44:00 -0000      
1.3
+++ javax/swing/event/TreeSelectionEvent.java   5 Jun 2005 06:32:33 -0000
@@ -1,5 +1,5 @@
 /* TreeSelectionEvent.java --
-   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -49,142 +49,142 @@
  */
 public class TreeSelectionEvent extends EventObject {
 
-       //-------------------------------------------------------------
-       // Variables --------------------------------------------------
-       //-------------------------------------------------------------
-
-       /**
-        * paths
-        */
-       protected TreePath[] paths;
-
-       /**
-        * areNew
-        */
-       protected boolean[] areNew;
-
-       /**
-        * oldLeadSelectionPath
-        */
-       protected TreePath oldLeadSelectionPath;
-
-       /**
-        * newLeadSelectionPath
-        */
-       protected TreePath newLeadSelectionPath;
-
-
-       //-------------------------------------------------------------
-       // Initialization ---------------------------------------------
-       //-------------------------------------------------------------
-
-       /**
-        * Constructor TreeSelectionEvent
-        * @param source TODO
-        * @param paths TODO
-        * @param areNew TODO
-        * @param oldLeadSelectionPath TODO
-        * @param newLeadSelectionPath TODO
-        */
-       public TreeSelectionEvent(Object source, TreePath[] paths,
-                               boolean[] areNew, TreePath oldLeadSelectionPath,
-                               TreePath newLeadSelectionPath) {
-               super(source);
-               this.paths                                      = paths;
-               this.areNew                                     = areNew;
-               this.oldLeadSelectionPath       = oldLeadSelectionPath;
-               this.newLeadSelectionPath       = newLeadSelectionPath;
-       } // TreeSelectionEvent()
-
-       /**
-        * Constructor TreeSelectionEvent
-        * @param source TODO
-        * @param paths TODO
-        * @param areNew TODO
-        * @param oldLeadSelectionPath TODO
-        * @param newLeadSelectionPath TODO
-        */
-       public TreeSelectionEvent(Object source, TreePath path,
-                               boolean isNew, TreePath oldLeadSelectionPath,
-                               TreePath newLeadSelectionPath) {
-               super(source);
-//TODO         this.paths                                      = new 
TreePath[1]{path};
-//TODO         this.areNew                                     = new 
boolean[1]{isNew};
-               this.oldLeadSelectionPath       = oldLeadSelectionPath;
-               this.newLeadSelectionPath       = newLeadSelectionPath;
-       } // TreeSelectionEvent()
-
-
-       //-------------------------------------------------------------
-       // Methods ----------------------------------------------------
-       //-------------------------------------------------------------
-
-       /**
-        * getPath
-        * @returns TreePath
-        */
-       public TreePath getPath() {
-               return paths[0];
-       } // getPath()
-
-       /**
-        * getPaths
-        * @returns TreePath[]
-        */
-       public TreePath[] getPaths() {
-               return paths;
-       } // getPaths()
-
-       /**
-        * isAddedPath
-        * @returns boolean
-        */
-       public boolean isAddedPath() {
-               return false; // TODO
-       } // isAddedPath()
-
-       /**
-        * isAddedPath
-        * @param path TODO
-        * @returns boolean
-        */
-       public boolean isAddedPath(TreePath path) {
-               return false; // TODO
-       } // isAddedPath()
-
-       /**
-        * isAddedPath
-        * @param index TODO
-        * @returns boolean
-        */
-       public boolean isAddedPath(int index) {
-               return false; // TODO
-       } // isAddedPath()
-
-       /**
-        * getOldLeadSelectionPath
-        * @returns TreePath
-        */
-       public TreePath getOldLeadSelectionPath() {
-               return oldLeadSelectionPath;
-       } // getOldLeadSelectionPath()
-
-       /**
-        * getNewLeadSelectionPath
-        * @returns TreePath
-        */
-       public TreePath getNewLeadSelectionPath() {
-               return newLeadSelectionPath;
-       } // getNewLeadSelectionPath()
-
-       /**
-        * cloneWithSource
-        * @param source TODO
-        * @returns Object
-        */
-       public Object cloneWithSource(Object source) {
-               return null; // TODO
-       } // cloneWithSource()
+  //-------------------------------------------------------------
+  // Variables --------------------------------------------------
+  //-------------------------------------------------------------
+
+  /**
+   * paths
+   */
+  protected TreePath[] paths;
+
+  /**
+   * areNew
+   */
+  protected boolean[] areNew;
+
+  /**
+   * oldLeadSelectionPath
+   */
+  protected TreePath oldLeadSelectionPath;
+
+  /**
+   * newLeadSelectionPath
+   */
+  protected TreePath newLeadSelectionPath;
+
+
+  //-------------------------------------------------------------
+  // Initialization ---------------------------------------------
+  //-------------------------------------------------------------
+
+  /**
+   * Constructor TreeSelectionEvent
+   * @param source TODO
+   * @param paths TODO
+   * @param areNew TODO
+   * @param oldLeadSelectionPath TODO
+   * @param newLeadSelectionPath TODO
+   */
+  public TreeSelectionEvent(Object source, TreePath[] paths,
+                           boolean[] areNew, TreePath oldLeadSelectionPath,
+                           TreePath newLeadSelectionPath) {
+    super(source);
+    this.paths                                 = paths;
+    this.areNew                                        = areNew;
+    this.oldLeadSelectionPath  = oldLeadSelectionPath;
+    this.newLeadSelectionPath  = newLeadSelectionPath;
+  } // TreeSelectionEvent()
+
+  /**
+   * Constructor TreeSelectionEvent
+   * @param source TODO
+   * @param paths TODO
+   * @param areNew TODO
+   * @param oldLeadSelectionPath TODO
+   * @param newLeadSelectionPath TODO
+   */
+  public TreeSelectionEvent(Object source, TreePath path,
+                           boolean isNew, TreePath oldLeadSelectionPath,
+                           TreePath newLeadSelectionPath) {
+    super(source);
+    //TODO             this.paths                                      = new 
TreePath[1]{path};
+    //TODO             this.areNew                                     = new 
boolean[1]{isNew};
+    this.oldLeadSelectionPath  = oldLeadSelectionPath;
+    this.newLeadSelectionPath  = newLeadSelectionPath;
+  } // TreeSelectionEvent()
+
+
+  //-------------------------------------------------------------
+  // Methods ----------------------------------------------------
+  //-------------------------------------------------------------
+
+  /**
+   * getPath
+   * @returns TreePath
+   */
+  public TreePath getPath() {
+    return paths[0];
+  } // getPath()
+
+  /**
+   * getPaths
+   * @returns TreePath[]
+   */
+  public TreePath[] getPaths() {
+    return paths;
+  } // getPaths()
+
+  /**
+   * isAddedPath
+   * @returns boolean
+   */
+  public boolean isAddedPath() {
+    return false; // TODO
+  } // isAddedPath()
+
+  /**
+   * isAddedPath
+   * @param path TODO
+   * @returns boolean
+   */
+  public boolean isAddedPath(TreePath path) {
+    return false; // TODO
+  } // isAddedPath()
+
+  /**
+   * isAddedPath
+   * @param index TODO
+   * @returns boolean
+   */
+  public boolean isAddedPath(int index) {
+    return false; // TODO
+  } // isAddedPath()
+
+  /**
+   * getOldLeadSelectionPath
+   * @returns TreePath
+   */
+  public TreePath getOldLeadSelectionPath() {
+    return oldLeadSelectionPath;
+  } // getOldLeadSelectionPath()
+
+  /**
+   * getNewLeadSelectionPath
+   * @returns TreePath
+   */
+  public TreePath getNewLeadSelectionPath() {
+    return newLeadSelectionPath;
+  } // getNewLeadSelectionPath()
+
+  /**
+   * cloneWithSource
+   * @param source TODO
+   * @returns Object
+   */
+  public Object cloneWithSource(Object source) {
+    return null; // TODO
+  } // cloneWithSource()
 
 
 } // TreeSelectionEvent




reply via email to

[Prev in Thread] Current Thread [Next in Thread]