com.esri.aims.mtier.model.map.environment
Class ImageLimit

java.lang.Object
  extended by com.esri.aims.mtier.model.map.environment.ImageLimit
All Implemented Interfaces:
Serializable

public class ImageLimit
extends Object
implements Serializable

Holds the maximum allowable value of an output map in the total pixels available. ImageLimit is set after the Map object's InitMap method is called.

See Also:
Serialized Form

Constructor Summary
ImageLimit()
          Constructs an instance of an ImageLimit object.
 
Method Summary
 long getPixelCount()
          Returns the pixel count value of this ImageLimit object.
 void setPixelCount(long value)
          Sets the pixel count value for the ImageLimit object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ImageLimit

public ImageLimit()
Constructs an instance of an ImageLimit object. Example:
ImageLimit imageLimit = new ImageLimit();

Method Detail

setPixelCount

public void setPixelCount(long value)
Sets the pixel count value for the ImageLimit object. Example:
imageLimit.setPixelCount(10000);

Parameters:
value - the pixel count value.
See Also:
getPixelCount()

getPixelCount

public long getPixelCount()
Returns the pixel count value of this ImageLimit object. Example:
long pixelCount = imageLimit.getPixelCount();

Returns:
the pixel count value
See Also:
setPixelCount(long)