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

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

public class Path
extends Object
implements Serializable

Represents data for a path feature.

See Also:
Serialized Form

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

Constructor Detail

Path

public Path()
Constructs an instance of a Path object. Example: Path path = new Path();

Method Detail

setPoints

public void setPoints(Points value)
Sets the given points object to the Path object. Example:
 Point point = new Point();
 point.setX(-125.00);
 point.setY(45.0);
 Points points = new Points();
 points.addPointObject(point);
 path.setPoints(points);
 

Parameters:
value - the Points object;
See Also:
getPoints()

getPoints

public Points getPoints()
Returns the Points object associated with this Path object. Example:
 Points points = path.getPoints();

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