Package com.lbslocal.cc.objects.v4.addressFinder

Source Code of com.lbslocal.cc.objects.v4.addressFinder.AddressLocation

package com.lbslocal.cc.objects.v4.addressFinder;

import com.lbslocal.cc.objects.v0.common.City;
import com.lbslocal.cc.objects.v0.common.Point;


public class AddressLocation {
    Address address;
    String zipL;
    String zipR;
    Boolean carAccess; // indica se o endere�o � poss�vel de se chegar de carro
    Point point;
   
   
  public AddressLocation(Address address, String zipL,
      String zipR, Boolean carAccess, Point point) {
    this.address = address;
    this.zipL = zipL;
    this.zipR = zipR;
    this.carAccess = carAccess;
    this.point = point;
  }

  public AddressLocation() {
        address = new Address();
        address.setCity(new City());
        point = new Point();
        carAccess = true;
        zipL = "";
        zipR = "";
  }
  public Address getAddress() {
    return address;
  }

  public void setAddress(Address address) {
    this.address = address;
  }

  public String getZipL() {
    return zipL;
  }

  public void setZipL(String zipL) {
    this.zipL = zipL;
  }

  public String getZipR() {
    return zipR;
  }

  public void setZipR(String zipR) {
    this.zipR = zipR;
  }

  public Boolean getCarAccess() {
    return carAccess;
  }

  public void setCarAccess(Boolean carAccess) {
    this.carAccess = carAccess;
  }

  public Point getPoint() {
    return point;
  }

  public void setPoint(Point point) {
    this.point = point;
  }
}
TOP

Related Classes of com.lbslocal.cc.objects.v4.addressFinder.AddressLocation

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.