|
Cytoscape 3.1.1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.cytoscape.event.AbstractCyEvent
org.cytoscape.group.events.GroupEdgesAddedEvent
public final class GroupEdgesAddedEvent
This event signals that edges have been added to the network.
Module: group-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>group-api</artifactId> </dependency>
Constructor Summary | |
---|---|
GroupEdgesAddedEvent(CyGroup source,
CyEdge edge)
Constructs event. |
|
GroupEdgesAddedEvent(CyGroup source,
List<CyEdge> edges)
Constructs event. |
Method Summary | |
---|---|
List<CyEdge> |
getEdges()
Returns the list of edges associated with this event. |
Methods inherited from class org.cytoscape.event.AbstractCyEvent |
---|
getListenerClass, getSource |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public GroupEdgesAddedEvent(CyGroup source, CyEdge edge)
source
- the CyGroup
that is changing.edge
- A single edge added.public GroupEdgesAddedEvent(CyGroup source, List<CyEdge> edges)
source
- the CyGroup
that is changing.edges
- A list of edges added. May be null.Method Detail |
---|
public List<CyEdge> getEdges()
|
Cytoscape 3.1.1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |