Author: ruschein
Date: 2011-06-22 13:56:05 -0700 (Wed, 22 Jun 2011)
New Revision: 25880
Modified:
core3/model-impl/trunk/impl/src/main/java/org/cytoscape/model/internal/ArraySubGraph.java
Log:
Added missing payload events.
Modified:
core3/model-impl/trunk/impl/src/main/java/org/cytoscape/model/internal/ArraySubGraph.java
===================================================================
---
core3/model-impl/trunk/impl/src/main/java/org/cytoscape/model/internal/ArraySubGraph.java
2011-06-22 17:41:56 UTC (rev 25879)
+++
core3/model-impl/trunk/impl/src/main/java/org/cytoscape/model/internal/ArraySubGraph.java
2011-06-22 20:56:05 UTC (rev 25880)
@@ -127,7 +127,6 @@
* {@inheritDoc}
*/
public CyNode addNode() {
- //System.out.println("base addNode null");
final CyNode ret;
synchronized (this) {
ret = parent.nodeAdd();
@@ -294,6 +293,7 @@
nodeSet.add(node);
updateNode(node);
}
+ eventHelper.addEventPayload((CyNetwork)this, node,
AddedNodesEvent.class);
return true;
}
@@ -321,6 +321,7 @@
edgeSet.add(edge);
updateEdge(edge);
}
+ eventHelper.addEventPayload((CyNetwork)this, edge,
AddedEdgesEvent.class);
return true;
}
--
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.