Author: ruschein
Date: 2011-02-01 16:31:59 -0800 (Tue, 01 Feb 2011)
New Revision: 23995
Modified:
core3/ding-presentation-impl/trunk/pom.xml
core3/ding-presentation-impl/trunk/src/main/java/org/cytoscape/ding/impl/DGraphView.java
core3/ding-presentation-impl/trunk/src/main/java/org/cytoscape/ding/impl/FlagAndSelectionHandler.java
Log:
Updated to track newest model-api.
Modified: core3/ding-presentation-impl/trunk/pom.xml
===================================================================
--- core3/ding-presentation-impl/trunk/pom.xml 2011-02-02 00:16:10 UTC (rev
23994)
+++ core3/ding-presentation-impl/trunk/pom.xml 2011-02-02 00:31:59 UTC (rev
23995)
@@ -103,9 +103,13 @@
</build>
<dependencies>
-
<dependency>
<groupId>org.cytoscape</groupId>
+ <artifactId>model-api</artifactId>
+ <version>3.0.0-alpha3-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.cytoscape</groupId>
<artifactId>graph-render</artifactId>
<version>3.0.0-alpha1</version>
</dependency>
Modified:
core3/ding-presentation-impl/trunk/src/main/java/org/cytoscape/ding/impl/DGraphView.java
===================================================================
---
core3/ding-presentation-impl/trunk/src/main/java/org/cytoscape/ding/impl/DGraphView.java
2011-02-02 00:16:10 UTC (rev 23994)
+++
core3/ding-presentation-impl/trunk/src/main/java/org/cytoscape/ding/impl/DGraphView.java
2011-02-02 00:31:59 UTC (rev 23995)
@@ -413,11 +413,11 @@
this.manager = manager;
final CyTable nodeCAM = dataFactory.createTable("node view",
"SUID", Long.class, false);
- nodeCAM.createColumn("hidden", Boolean.class);
+ nodeCAM.createColumn("hidden", Boolean.class, false);
tableMgr.getTableMap(CyNode.class, networkModel).put("VIEW",
nodeCAM);
final CyTable edgeCAM = dataFactory.createTable("edge view",
"SUID", Long.class, false);
- edgeCAM.createColumn("hidden", Boolean.class);
+ edgeCAM.createColumn("hidden", Boolean.class, false);
tableMgr.getTableMap(CyEdge.class, networkModel).put("VIEW",
edgeCAM);
// creating empty subnetworks
Modified:
core3/ding-presentation-impl/trunk/src/main/java/org/cytoscape/ding/impl/FlagAndSelectionHandler.java
===================================================================
---
core3/ding-presentation-impl/trunk/src/main/java/org/cytoscape/ding/impl/FlagAndSelectionHandler.java
2011-02-02 00:16:10 UTC (rev 23994)
+++
core3/ding-presentation-impl/trunk/src/main/java/org/cytoscape/ding/impl/FlagAndSelectionHandler.java
2011-02-02 00:31:59 UTC (rev 23995)
@@ -143,7 +143,7 @@
if (nodesOrEdges.isEmpty())
return;
- final CyTable table =
nodesOrEdges.iterator().next().getCyRow().getDataTable();
+ final CyTable table =
nodesOrEdges.iterator().next().getCyRow().getTable();
try {
eventHelper.fireSynchronousEvent(new
RowsAboutToChangeEvent(this, table));
--
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.