Author: mes
Date: 2012-02-06 17:55:49 -0800 (Mon, 06 Feb 2012)
New Revision: 28204
Modified:
csplugins/trunk/ucsd/mes/cytable-reader/src/main/java/cytoscape/cytable/CyTableReaderPlugin.java
Log:
opened the plugin up a bit
Modified:
csplugins/trunk/ucsd/mes/cytable-reader/src/main/java/cytoscape/cytable/CyTableReaderPlugin.java
===================================================================
---
csplugins/trunk/ucsd/mes/cytable-reader/src/main/java/cytoscape/cytable/CyTableReaderPlugin.java
2012-02-07 01:55:35 UTC (rev 28203)
+++
csplugins/trunk/ucsd/mes/cytable-reader/src/main/java/cytoscape/cytable/CyTableReaderPlugin.java
2012-02-07 01:55:49 UTC (rev 28204)
@@ -16,11 +16,11 @@
Cytoscape.getDesktop().getCyMenus().addAction( new
CyTableReaderAction("Node"));
Cytoscape.getDesktop().getCyMenus().addAction( new
CyTableReaderAction("Edge"));
-
loadCmdLineTable(CytoscapeInit.getProperties().getProperty("node.cytable"),Cytoscape.getNodeAttributes());
-
loadCmdLineTable(CytoscapeInit.getProperties().getProperty("edge.cytable"),Cytoscape.getNodeAttributes());
+
loadCyTable(CytoscapeInit.getProperties().getProperty("node.cytable"),Cytoscape.getNodeAttributes());
+
loadCyTable(CytoscapeInit.getProperties().getProperty("edge.cytable"),Cytoscape.getNodeAttributes());
}
- private void loadCmdLineTable(Object loadNow, CyAttributes attrs) {
+ public static void loadCyTable(Object loadNow, CyAttributes attrs) {
if ( loadNow == null )
return;
--
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.