Cytoscape 3.0.1 API

org.cytoscape.model.events
Class RowSetRecord

java.lang.Object
  extended by org.cytoscape.model.events.RowSetRecord

public final class RowSetRecord
extends Object

Holds a record of a CyRow that was set and what it was set to.


Cytoscape Backwards Compatibility (Final Class): This class is final and therefore can't be extended by users. This means that we may add methods for minor version updates. Methods will only be removed for major version updates.

Constructor Summary
RowSetRecord(CyRow row, String column, Object value, Object rawValue)
          Constructs a RowSetRecord.
 
Method Summary
 String getColumn()
          Returns the name of the column of the data that was set.
 Object getRawValue()
          Returns the raw value that the data was set as.
 CyRow getRow()
          Returns the CyRow of the data that was set.
 Object getValue()
          Returns the value that the data was set as.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RowSetRecord

public RowSetRecord(CyRow row,
                    String column,
                    Object value,
                    Object rawValue)
Constructs a RowSetRecord.

Parameters:
row - The CyRow of the data that was set.
column - The name of the column of the data that was set.
value - The value the data was set as.
rawValue - The raw value the data was set as.
Method Detail

getRow

public CyRow getRow()
Returns the CyRow of the data that was set.

Returns:
the CyRow of the data that was set.

getColumn

public String getColumn()
Returns the name of the column of the data that was set.

Returns:
the name of the column of the data that was set.

getValue

public Object getValue()
Returns the value that the data was set as.

Returns:
the value that the data was set as.

getRawValue

public Object getRawValue()
Returns the raw value that the data was set as.

Returns:
the raw value that the data was set as.

Cytoscape 3.0.1 API

Copyright 2011 Cytoscape Consortium. All rights reserved.