/**
* RouteSummary.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.2.1 Jun 14, 2005 (09:15:57 EDT) WSDL2Java emitter.
*/
package com.lbslocal.cc.objects.v3.route;
import com.lbslocal.cc.objects.v0.common.Point;
public class RouteSummary
{
private java.lang.String description;
private double distance;
private com.lbslocal.cc.objects.v0.common.Point point;
private String time;
public String getTime()
{
return time;
}
public void setTime(String time)
{
this.time = time;
}
public RouteSummary()
{
this.description = "";
this.distance = 0;
this.point = new Point();
}
public RouteSummary(java.lang.String description, double distance, com.lbslocal.cc.objects.v0.common.Point point)
{
this.description = description;
this.distance = distance;
this.point = point;
}
/**
* Gets the description value for this RouteSummary.
*
* @return description
*/
public java.lang.String getDescription()
{
return description;
}
/**
* Sets the description value for this RouteSummary.
*
* @param description
*/
public void setDescription(java.lang.String description)
{
this.description = description;
}
/**
* Gets the distance value for this RouteSummary.
*
* @return distance
*/
public double getDistance()
{
return distance;
}
/**
* Sets the distance value for this RouteSummary.
*
* @param distance
*/
public void setDistance(double distance)
{
this.distance = distance;
}
/**
* Gets the point value for this RouteSummary.
*
* @return point
*/
public com.lbslocal.cc.objects.v0.common.Point getPoint()
{
return point;
}
/**
* Sets the point value for this RouteSummary.
*
* @param point
*/
public void setPoint(com.lbslocal.cc.objects.v0.common.Point point)
{
this.point = point;
}
}