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

java.lang.Object
  extended by 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()
           
 
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()
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:
getMinX()

setMinY

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

Parameters:
minY - is the minimum y value.
See Also:
getMinY()

setMaxX

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

Parameters:
maxX - is the maximum x value.
See Also:
getMaxX()

setMaxY

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

Parameters:
maxY - is the maximum y value.
See Also:
getMaxY()

getMinX

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

Returns:
double
See Also:
setMinX(double)

getMinY

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

Returns:
double
See Also:
setMinY(double)

getMaxX

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

Returns:
double
See Also:
setMaxX(double)

getMaxY

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

Returns:
double
See Also:
setMaxY(double)