Skip to content

Commit

Permalink
add class Shape relate to #54 update test #19 update request for route
Browse files Browse the repository at this point in the history
  • Loading branch information
yaelAmitay committed Dec 18, 2016
1 parent 926bb71 commit d75d17b
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package smartcity.accessibility.navigation.mapquestcommunication;

/**
*
* @author yael The class holds a collection of shape points in the route. shape
* points are points in the route that represent turning p[oint in the
* route
*/
public class Shape {
private Double[] shapePoints;

public Shape() {

}

public Double[] getShapePoints() {
return shapePoints;
}

public void setShapePoints(Double[] shapePoints) {
this.shapePoints = shapePoints;
}

}

1 comment on commit d75d17b

@yaelAmitay
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the name of this commit is wrong. this commit only add the class shape.

Please sign in to comment.