|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectps2.RouteFormatter
public abstract class RouteFormatter extends Object
A RouteFormatter class knows how to create a textual description of directions from one location to another. The class is abstract to support different textual descriptions.
These classes may be thought of as views on the Route model. (see Sun's buzzword-filled explanation of this design pattern)
Constructor and Description |
---|
RouteFormatter()
|
Modifier and Type | Method and Description |
---|---|
String |
computeDirections(Route route,
double heading)
Give directions for following this Route, starting at its start point and facing in the specified heading. |
abstract String |
computeLine(GeoFeature geoFeature,
double origHeading)
Computes a single line of a multi-line directions String that represents the intructions for traversing a single geograhpical feature. |
protected String |
getTurnString(double origHeading,
double newHeading)
Computes directions to turn based on the heading change. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RouteFormatter()
Method Detail |
---|
public String computeDirections(Route route, double heading)
Give directions for following this Route, starting at its start point and facing in the specified heading.
This method should call computeLine for each geographical feature in this route and concatenate the results into a single String.
route
- The route for which to print directions.heading
- The initial heading.public abstract String computeLine(GeoFeature geoFeature, double origHeading)
geoFeature
- The geographical feature to traverse.origHeading
- The initial headingprotected String getTurnString(double origHeading, double newHeading)
Continue if a < 10 Turn slight right if 10 ≤ a < 60 Turn right if 60 ≤ a < 120 Turn sharp right if 120 ≤ a < 179 U-turn if 179 ≤ aand likewise for left turns.
origHeading
- the start headingnewHeading
- the desired new heading
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |