Author: mmichaud
Date: 2009-04-02 07:57:49 -0700 (Thu, 02 Apr 2009)
New Revision: 16422
Modified:
csplugins/trunk/pasteur/mathieu/tunables2/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
Log:
Modified:
csplugins/trunk/pasteur/mathieu/tunables2/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
===================================================================
---
csplugins/trunk/pasteur/mathieu/tunables2/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
2009-04-02 14:57:42 UTC (rev 16421)
+++
csplugins/trunk/pasteur/mathieu/tunables2/src/main/java/org/cytoscape/work/AbstractTunableInterceptor.java
2009-04-02 14:57:49 UTC (rev 16422)
@@ -1,15 +1,10 @@
package org.cytoscape.work;
+import java.awt.Component;
import java.lang.reflect.Field;
import java.util.HashMap;
-import java.util.Iterator;
import java.util.LinkedHashMap;
-import java.util.LinkedList;
-import java.util.List;
import java.util.Map;
-
-
-import org.cytoscape.work.internal.gui.Guihandler;
import org.cytoscape.work.internal.gui.HandlerFactory;
@@ -24,7 +19,7 @@
}
public final void loadTunables(Object obj){
- //if ( !handlerMap.containsKey(obj) ) {
//Deleted to get new Panels if we do it many times
+ //if ( !handlerMap.containsKey(obj) ) {
LinkedHashMap<String,T> handlerList = new
LinkedHashMap<String,T>();
// Find each public field in the class.
for (Field field : obj.getClass().getFields()) {
@@ -53,5 +48,5 @@
return handlerMap.get(o);
}
- public abstract int createUI(Object ... objs);
+ public abstract boolean createUI(Object ... objs);
}
\ No newline at end of file
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---