com.esri.aims.mtier.model.acetate
Class Hole

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

public class Hole
extends Object
implements Serializable

Provides the x, y coordinate locations for holes inside a polygon feature.

See Also:
Serialized Form

Constructor Summary
Hole()
          Constructs an instance of a Hole object.
 
Method Summary
 Points getPoints()
          Returns the Points object associated with this Hole.
 void setPoints(Points object)
          Sets the specified Points object to this Hole object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Hole

public Hole()
Constructs an instance of a Hole object.
Example: Hole hole = new Hole();

Method Detail

setPoints

public void setPoints(Points object)
Sets the specified Points object to this Hole object. Example:
 Point pnt = new Point();
 pnt.setX(-125.00);
 pnt.setY(45.0);
 Points pnts = new Points();
 pnts.addPointObject(pnt);
 hole.setPoints(pnts);
 

Parameters:
object - the Points object.
See Also:
getPoints()

getPoints

public Points getPoints()
Returns the Points object associated with this Hole.
Example: Points pnts = hole.getPoints();

Returns:
Points
See Also:
setPoints(com.esri.aims.mtier.model.acetate.Points)