Author: mkirby
Date: 2011-10-07 14:32:40 -0700 (Fri, 07 Oct 2011)
New Revision: 27093
Modified:
core3/api/trunk/work-api/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
core3/api/trunk/work-api/src/main/java/org/cytoscape/work/TunableHandler.java
Log:
Fixed Javadoc.
Modified:
core3/api/trunk/work-api/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
===================================================================
---
core3/api/trunk/work-api/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
2011-10-07 21:28:05 UTC (rev 27092)
+++
core3/api/trunk/work-api/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
2011-10-07 21:32:40 UTC (rev 27093)
@@ -102,10 +102,6 @@
/**
* Creates a new AbstractTunableInterceptor object.
- *
- * @param tunableHandlerFactory Factory of <code>Handlers</code> = can
be <code>GUIHandlerFactory</code> to make the GUI with the
<code>Handlers</code>,
- * <code>CLHandlerFactory</code> to get the <code>Handlers</code>
that will create the <i>Options</i> for the <code>Tasks</code> runnable through
the CommandLine Interface,
- * or <code>PropHandlerFactory</code> to get the <code>Handlers</code>
for Properties.
*/
public AbstractTunableInterceptor() {
throwException = false;
Modified:
core3/api/trunk/work-api/src/main/java/org/cytoscape/work/TunableHandler.java
===================================================================
---
core3/api/trunk/work-api/src/main/java/org/cytoscape/work/TunableHandler.java
2011-10-07 21:28:05 UTC (rev 27092)
+++
core3/api/trunk/work-api/src/main/java/org/cytoscape/work/TunableHandler.java
2011-10-07 21:32:40 UTC (rev 27093)
@@ -15,12 +15,16 @@
* @Tunable or null if no field has been associated with this handler.
* @return an object describing a field annotated with @Tunable
* or null if no field has been associated with this handler
+ * @throws IllegalAccessException
+ * @throws InvocationTargetException
*/
Object getValue() throws IllegalAccessException,
InvocationTargetException;
/**
* Attempts to set the value "newValue" on the associated Tunable.
* @param newValue the value to be written into the tunable property
+ * @throws IllegalAccessException
+ * @throws InvocationTargetException
*/
void setValue(final Object newValue) throws IllegalAccessException,
InvocationTargetException;
--
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.