copyright The Portico Project 2008.

Uses of Class
org.portico.shared.compat.JArrayIndexOutOfBounds

Packages that use JArrayIndexOutOfBounds
org.portico.shared.model   
 

Uses of JArrayIndexOutOfBounds in org.portico.shared.model
 

Methods in org.portico.shared.model that throw JArrayIndexOutOfBounds
private  void Extent.checkDimension(int dimension)
          The 1.3 spec says that if there is no dimension in the extent for a requested action, an ArrayIndexOutOfBounds exception should be thrown.
private  void RegionInstance.checkIndex(int index)
          Checks the provided index to make sure it is valid for this Region (greater than 0 and less than the number of contained extents-1).
 Extent RegionInstance.getExtent(int index)
          Get the extent at the given index.
 Extent.Range Extent.getRange(int dimensionHandle)
          Returns the Extent.Range contained within this Extent for the given dimension handle.
 long Extent.getRangeLowerBound(int dimensionHandle)
          Fetches the lower bound for the range associated with the given dimension in this extent and returns it.
 long RegionInstance.getRangeLowerBound(int index, int dimension)
           
 long RegionInstance.getRangeLowerBoundNotificationLimit(int extentHandle, int dimensionHandle)
          For now, this just returns the exact same value as RegionInstance.getRangeLowerBound(int, int)
 long Extent.getRangeUpperBound(int dimensionHandle)
          Fetches the upper bound for the range associated with the given dimension in this extent and returns it.
 long RegionInstance.getRangeUpperBound(int index, int dimension)
           
 long RegionInstance.getRangeUpperBoundNotificationLimit(int extentHandle, int dimensionHandle)
          For now, this just returns the exact same value as RegionInstance.getRangeUpperBound(int, int)
 void RegionInstance.setExtent(Extent extent, int index)
          Set the extent at the given index.
 void Extent.setRange(int dimensionHandle, Extent.Range range)
          Sets the Extent.Range for the given dimension handle in this Extent.
 void RegionInstance.setRangeLowerBound(int index, int dimension, long bound)
          Modify lower bound of extent along indicated dimension.
 void Extent.setRangeLowerBound(int dimensionHandle, long lowerBound)
          Sets the lower bound for the range associated with the given dimension in this extent.
 void RegionInstance.setRangeUpperBound(int index, int dimension, long bound)
          Modify upper bound of extent along indicated dimension.
 void Extent.setRangeUpperBound(int dimensionHandle, long upperBound)
          Sets the upper bound for the range associated with the given dimension in this extent.
 


copyright The Portico Project 2008.