com.esri.aims.mtier.model.wmsmap
Class Envelope

java.lang.Object
  |
  +--com.esri.aims.mtier.model.wmsmap.Envelope
All Implemented Interfaces:
Serializable

public class Envelope
extends Object
implements Serializable

Defines an Envelope object used for setting extents of the map.

See Also:
Serialized Form

Constructor Summary
Envelope()
          Creates an instance of an Envelope object.
 
Method Summary
 double getMaxX()
          Returns the Envelope objects maximum x coordinate value.
 double getMaxY()
          Returns the Envelope objects maximum y coordinate value.
 double getMinX()
          Returns the Envelope objects minimum x coordinate value.
 double getMinY()
          Returns the Envelope objects minimum y coordinate value.
 void setMaxX(double maxX)
          Sets the Envelope objects maximum x coordinate value.
 void setMaxY(double maxY)
          Sets the Envelope objects maximum y coordinate value.
 void setMinX(double minX)
          Sets the Envelope objects minimum x coordinate value.
 void setMinY(double minY)
          Sets the Envelope objects minimum y coordinate value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Envelope

public Envelope()
Creates an instance of an Envelope object.

Method Detail

setMinX

public void setMinX(double minX)
Sets the Envelope objects minimum x coordinate value.

Parameters:
minX - is the minimum x value.
See Also:
#getXMin

setMinY

public void setMinY(double minY)
Sets the Envelope objects minimum y coordinate value.

Parameters:
minY - is the minimum y value.
See Also:
#getYMin

setMaxX

public void setMaxX(double maxX)
Sets the Envelope objects maximum x coordinate value.

Parameters:
maxX - is the maximum x value.
See Also:
#getXMax

setMaxY

public void setMaxY(double maxY)
Sets the Envelope objects maximum y coordinate value.

Parameters:
maxY - is the maximum y value.
See Also:
#getYMax

getMinX

public double getMinX()
Returns the Envelope objects minimum x coordinate value.

Returns:
double
See Also:
#setXMin

getMinY

public double getMinY()
Returns the Envelope objects minimum y coordinate value.

Returns:
double
See Also:
#setYMin

getMaxX

public double getMaxX()
Returns the Envelope objects maximum x coordinate value.

Returns:
double
See Also:
#setXMax

getMaxY

public double getMaxY()
Returns the Envelope objects maximum y coordinate value.

Returns:
double
See Also:
#setYMax