Author: mmichaud
Date: 2009-04-02 07:59:10 -0700 (Thu, 02 Apr 2009)
New Revision: 16428
Modified:
csplugins/trunk/pasteur/mathieu/tunables2/src/main/java/org/cytoscape/work/internal/cl/CLTunableInterceptor.java
Log:
Modified:
csplugins/trunk/pasteur/mathieu/tunables2/src/main/java/org/cytoscape/work/internal/cl/CLTunableInterceptor.java
===================================================================
---
csplugins/trunk/pasteur/mathieu/tunables2/src/main/java/org/cytoscape/work/internal/cl/CLTunableInterceptor.java
2009-04-02 14:58:58 UTC (rev 16427)
+++
csplugins/trunk/pasteur/mathieu/tunables2/src/main/java/org/cytoscape/work/internal/cl/CLTunableInterceptor.java
2009-04-02 14:59:10 UTC (rev 16428)
@@ -1,5 +1,6 @@
package org.cytoscape.work.internal.cl;
+import java.awt.Component;
import java.lang.reflect.*;
import java.lang.annotation.*;
import java.util.*;
@@ -19,7 +20,7 @@
this.args = args;
}
- public int createUI(Object ... objs) {
+ public boolean createUI(Object ... objs) {
List<CLHandler> lh = new ArrayList<CLHandler>();
@@ -58,7 +59,7 @@
for ( CLHandler h : lh )
h.handleLine( line );
- return 0;
+ return false;
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---