TPTP 4.5.0 Platform Project
Internal API Specification

org.eclipse.tptp.platform.report.chart.internal
Interface IXYSurface

All Known Implementing Classes:
DXYSurface

Deprecated. As of TPTP 4.5.0, use the TPTP Business Intelligence and Reporting Tools (BIRT) reporting infrastructure (org.eclipse.tptp.platform.report.birt).

public interface IXYSurface

Interface used to define a XY Surface graphic type.

See Also:
for an example of implementation

Method Summary
 int getSizeX()
          Deprecated.  
 int getSizeY()
          Deprecated.  
 double getZ(int x, int y)
          Deprecated.  
 double getZMax()
          Deprecated.  
 double getZMin()
          Deprecated.  
 

Method Detail

getSizeX

int getSizeX()
Deprecated. 
Returns:
the number of points along X axis

getSizeY

int getSizeY()
Deprecated. 
Returns:
the number of points along Y axis

getZMin

double getZMin()
Deprecated. 
Returns:
minimal value getZ() can return along Z axis

getZMax

double getZMax()
Deprecated. 
Returns:
maximal value getZ() can return along Z axis

getZ

double getZ(int x,
            int y)
Deprecated. 
Returns:
Z value for x, y points, x is from 0 to getSizeX()-1 y is from 0 to getSizeY()-1.

TPTP 4.5.0 Platform Project
Internal API Specification