Author: ruschein
Date: 2010-08-03 12:21:30 -0700 (Tue, 03 Aug 2010)
New Revision: 21143

Modified:
   core3/work-api/trunk/src/main/java/org/cytoscape/work/AbstractHandler.java
   core3/work-api/trunk/src/main/java/org/cytoscape/work/Handler.java
Log:
Removed unused getMethod() method.

Modified: 
core3/work-api/trunk/src/main/java/org/cytoscape/work/AbstractHandler.java
===================================================================
--- core3/work-api/trunk/src/main/java/org/cytoscape/work/AbstractHandler.java  
2010-08-03 19:11:10 UTC (rev 21142)
+++ core3/work-api/trunk/src/main/java/org/cytoscape/work/AbstractHandler.java  
2010-08-03 19:21:30 UTC (rev 21143)
@@ -34,7 +34,6 @@
         * This method will be annotated as a <code>Tunable</code>
         */
        protected Method smethod;
-       protected Method m;
        
        /**
         * Object that is contained in the Field <code>f</code>
@@ -72,22 +71,8 @@
                this.o = o;
                this.t = t;
        }
-
        
        /**
-        * Handler for Methods values
-        * @param m method that has been annotated
-        * @param o object contained in <code>m</code>
-        * @param t tunable associated to <code>m</code> 
-        */
-       public AbstractHandler(Method m, Object o, Tunable t) {
-               this.m = m;
-               this.o = o;
-               this.t = t;
-       }
-
-       
-       /**
         * Handler for 2 Methods : <code>gmethod</code> and <code>smethod</code>
         * @param getmethod method that has been annotated as a <i>getter</i>
         * @param setmethod method that has been annotated as a <i>setter</i>
@@ -112,16 +97,7 @@
                return f;
        }
 
-       
        /**
-        * To get <code>Method m</code>
-        * @return method component from the handler
-        */
-       public Method getMethod() {
-               return m;
-       }
-
-       /**
         * To get <code>Method gmethod</code>
         * @return method component from the handler
         */

Modified: core3/work-api/trunk/src/main/java/org/cytoscape/work/Handler.java
===================================================================
--- core3/work-api/trunk/src/main/java/org/cytoscape/work/Handler.java  
2010-08-03 19:11:10 UTC (rev 21142)
+++ core3/work-api/trunk/src/main/java/org/cytoscape/work/Handler.java  
2010-08-03 19:21:30 UTC (rev 21143)
@@ -14,7 +14,7 @@
         * 
         * <code>Handler</code> will also be used to set the values that are in 
the <code>Handler</code> to the Properties object with <code>PropHandler</code>
         * 
-        * Access to different parts of the <code>Handler</code> is allowed by 
using the <code>getField()</code>, <code>getMethod()</code>,
+        * Access to different parts of the <code>Handler</code> is allowed by 
using the <code>getField()</code>,
         * <code>getObject()</code>, and <code>getTunable</code> methods.
         * </pre></p>
         * @author pasteur
@@ -32,12 +32,6 @@
        Field getField();
        
        /**
-        * To get the handler's Method
-        * @return Method
-        */
-       Method getMethod();
-       
-       /**
         * To get the Handler's Object
         * @return object
         */

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to