org.limn.data
Interface LimnData

All Known Implementing Classes:
RAFData, SimpleData

public interface LimnData

LimnData provides some basic data access and selection features. A LimnData object may contain an entire data set or may only cache sections of data as needed.


Method Summary
 int getNumCol()
           
 int getNumRow()
           
 double[] getRow(int x)
           
 double getValue(int x, int y)
           
 void setActive(java.lang.String[] s)
          setActive will reduce the data to only the rows named in the string array
 

Method Detail

getNumRow

public int getNumRow()

getNumCol

public int getNumCol()

getRow

public double[] getRow(int x)

getValue

public double getValue(int x,
                       int y)

setActive

public void setActive(java.lang.String[] s)
setActive will reduce the data to only the rows named in the string array