|
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.command.util.RowList
public class RowList
This class implements a wrapper for a List of table rows that can be used by the Tunables mechanism. Currently, it is only implemented by command tunables so it will be ignored in GUI (Swing) contexts.
Module: command-executor-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>command-executor-api</artifactId> </dependency>
Constructor Summary | |
---|---|
RowList()
Create a new RowList object with no initial table |
|
RowList(CyTable targetTable)
Create a new RowList object with an initial table |
Method Summary | |
---|---|
CyTable |
getTable()
Get the table for this rowlist |
List<CyRow> |
getValue()
Get the list of rows |
void |
setTable(CyTable table)
Set the table for this rowlist |
void |
setValue(List<CyRow> rowList)
Set the list of rows |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RowList()
public RowList(CyTable targetTable)
targetTable
- the table this rowlist will be inMethod Detail |
---|
public void setTable(CyTable table)
table
- the table for this rowlistpublic CyTable getTable()
public void setValue(List<CyRow> rowList)
rowList
- the list of rowspublic List<CyRow> getValue()
|
Cytoscape 3.1.1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |