com.esri.aims.mtier.model.arcmap
Class Scale

java.lang.Object
  extended by com.esri.aims.mtier.model.arcmap.Scale
All Implemented Interfaces:
Serializable

public class Scale
extends Object
implements Serializable

Defines dataframe scale and center point

See Also:
Serialized Form

Constructor Summary
Scale()
           
 
Method Summary
 double getRF()
          Returns Scale relative factor.
 double getX()
          Returns Scale X-coordinate.
 double getY()
          Returns Scale Y-coordinate.
 void scale()
          Constructs an instance of a Scale object.
 void setRF(double rf)
          Sets relative factor such as 1:24000.
 void setX(double x)
          Sets X-coordinate representing the center of the map.
 void setY(double y)
          Sets Y-coordinate representing the center of the map.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Scale

public Scale()
Method Detail

scale

public void scale()
Constructs an instance of a Scale object.
Scale scale = new Scale();


setRF

public void setRF(double rf)
Sets relative factor such as 1:24000. The value for rf in this case would be 24000.


getRF

public double getRF()
Returns Scale relative factor.


setX

public void setX(double x)
Sets X-coordinate representing the center of the map.


getX

public double getX()
Returns Scale X-coordinate.


setY

public void setY(double y)
Sets Y-coordinate representing the center of the map.


getY

public double getY()
Returns Scale Y-coordinate.