Author: mmichaud
Date: 2009-06-11 10:43:05 -0700 (Thu, 11 Jun 2009)
New Revision: 16927
Modified:
core3/work-tunable-props-impl/trunk/src/main/java/org/cytoscape/work/internal/props/PropHandlerFactory.java
Log:
[]
Modified:
core3/work-tunable-props-impl/trunk/src/main/java/org/cytoscape/work/internal/props/PropHandlerFactory.java
===================================================================
---
core3/work-tunable-props-impl/trunk/src/main/java/org/cytoscape/work/internal/props/PropHandlerFactory.java
2009-06-11 17:41:44 UTC (rev 16926)
+++
core3/work-tunable-props-impl/trunk/src/main/java/org/cytoscape/work/internal/props/PropHandlerFactory.java
2009-06-11 17:43:05 UTC (rev 16927)
@@ -50,9 +50,9 @@
else if (type == ListSingleSelection.class)
- return new ListSinglePropHandler(f,o,t);
+ return new ListSinglePropHandler<Object>(f,o,t);
else if (type == ListMultipleSelection.class)
- return new ListMultiplePropHandler(f,o,t);
+ return new ListMultiplePropHandler<Object>(f,o,t);
else if (type == File.class)
return new FilePropHandler(f,o,t);
@@ -64,5 +64,9 @@
public PropHandler getHandler(Method m, Object o, Tunable t) {
return null;
}
+
+ public PropHandler getHandler(Method gmethod,Method smethod,Object
o,Tunable tg, Tunable ts){
+ return null;
+ }
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---