org.jcae.viewer3d.fd.pl02
Class PL02Provider

java.lang.Object
  extended by org.jcae.viewer3d.fd.pl02.PL02Provider
All Implemented Interfaces:
DomainProvider, FDProvider

public class PL02Provider
extends java.lang.Object
implements FDProvider

This class provide FDDomain by reading pl02, wi02 files.


Constructor Summary
PL02Provider()
           
 
Method Summary
 Domain getDomain(int id)
           
 int[] getDomainIDs()
           
 double getXGrid(int index)
          Returns the value along X axis at the specified position.
 int getXGridCount()
          Returns number of cells along X axis
 double getYGrid(int index)
          Returns the value along Y axis at the specified position.
 int getYGridCount()
          Returns number of values along Y axis
 double getZGrid(int index)
          Returns the value along Z axis at the specified position.
 int getZGridCount()
          Returns number of values along Z axis
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PL02Provider

public PL02Provider()
Method Detail

getDomainIDs

public int[] getDomainIDs()
Specified by:
getDomainIDs in interface DomainProvider

getDomain

public Domain getDomain(int id)
Specified by:
getDomain in interface DomainProvider

getXGridCount

public int getXGridCount()
Description copied from interface: FDProvider
Returns number of cells along X axis

Specified by:
getXGridCount in interface FDProvider

getXGrid

public double getXGrid(int index)
Description copied from interface: FDProvider
Returns the value along X axis at the specified position.

Specified by:
getXGrid in interface FDProvider
Parameters:
index - index of value to return. Value must be between 0 and getXGridCount-1.

getYGridCount

public int getYGridCount()
Description copied from interface: FDProvider
Returns number of values along Y axis

Specified by:
getYGridCount in interface FDProvider

getYGrid

public double getYGrid(int index)
Description copied from interface: FDProvider
Returns the value along Y axis at the specified position.

Specified by:
getYGrid in interface FDProvider
Parameters:
index - index of value to return. Value must be between 0 and getYGridCount-1.

getZGridCount

public int getZGridCount()
Description copied from interface: FDProvider
Returns number of values along Z axis

Specified by:
getZGridCount in interface FDProvider

getZGrid

public double getZGrid(int index)
Description copied from interface: FDProvider
Returns the value along Z axis at the specified position.

Specified by:
getZGrid in interface FDProvider
Parameters:
index - index of value to return. Value must be between 0 and getZGridCount-1.