Author: ruschein
Date: 2010-08-13 11:54:58 -0700 (Fri, 13 Aug 2010)
New Revision: 21382

Modified:
   
core3/work-api/trunk/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
   core3/work-api/trunk/src/main/java/org/cytoscape/work/HandlerFactory.java
   core3/work-api/trunk/src/main/java/org/cytoscape/work/TunableInterceptor.java
Log:
Fixed some Javadoc errors.

Modified: 
core3/work-api/trunk/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
===================================================================
--- 
core3/work-api/trunk/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
       2010-08-13 18:54:44 UTC (rev 21381)
+++ 
core3/work-api/trunk/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
       2010-08-13 18:54:58 UTC (rev 21382)
@@ -69,7 +69,7 @@
  * </ol>
  * </pre></p>
  *
- * @param <H>  <code>Handlers</code> created in the factory
+ * @param <TH>  <code>TunableHandler</code>s created in the factory
  */
 public abstract class AbstractTunableInterceptor<TH extends TunableHandler> 
implements TunableInterceptor<TH> {
        /**

Modified: 
core3/work-api/trunk/src/main/java/org/cytoscape/work/HandlerFactory.java
===================================================================
--- core3/work-api/trunk/src/main/java/org/cytoscape/work/HandlerFactory.java   
2010-08-13 18:54:44 UTC (rev 21381)
+++ core3/work-api/trunk/src/main/java/org/cytoscape/work/HandlerFactory.java   
2010-08-13 18:54:58 UTC (rev 21382)
@@ -8,7 +8,7 @@
  * Provides a factory to create <code>Handlers</code> depending on their type.
  * <code>Handlers</code> will be generated for Fields and Methods in the class 
that contains the <code>Tunables</code>.
  *
- * @param <H> <code>TunableHandler</code> that will be created by this 
factory. They will contain the informations
+ * @param <TH> <code>TunableHandler</code> that will be created by this 
factory. They will contain the informations
  * provided by the <code>Tunable</code> annotations and the Object itself.
  * @author Pasteur
  */
@@ -22,10 +22,10 @@
         * @param tunable   Tunable that contains all the information 
concerning the user interface
         * @return TH       the newly constructed <code>TunableHandler</code>
         */
-        TH getHandler(final Field field, final Object instance, Tunable t);
+        TH getHandler(final Field field, final Object instance, final Tunable 
tunable);
 
        /**
-        * This method returns a <code>Handler</code> for a Method annotated as 
a <code>Tunable</code>
+        * This method returns a <code>TunableHandler</code> for a Method 
annotated as a <code>Tunable</code>
         * 
         * @param setter    a Method that need to be annotated with  
<code>@Tunable</code>
         * @param getter    a Method that need to be annotated with  
<code>@Tunable</code>

Modified: 
core3/work-api/trunk/src/main/java/org/cytoscape/work/TunableInterceptor.java
===================================================================
--- 
core3/work-api/trunk/src/main/java/org/cytoscape/work/TunableInterceptor.java   
    2010-08-13 18:54:44 UTC (rev 21381)
+++ 
core3/work-api/trunk/src/main/java/org/cytoscape/work/TunableInterceptor.java   
    2010-08-13 18:54:58 UTC (rev 21382)
@@ -7,7 +7,7 @@
 /**
  * Provides methods to intercept the Objects annotated as 
<code>@Tunable</code>, use, and display them.
  * Intended to be used as an OSGi server.
- * @param <T> <code>Handlers</code> that will be detected. They will contain 
the informations provided by the <code>@Tunable</code> annotations and the 
Object itself.
+ * @param <TH> <code>TunableHandler</code>s that will be detected. They will 
contain the informations provided by the <code>@Tunable</code> annotations and 
the Object itself.
  * @author Pasteur
  */
 public interface TunableInterceptor<TH extends TunableHandler> {

-- 
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