com.venky.geo.City Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Commonly used programming tasks in java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.venky.geo;
import com.venky.geo.GeoCoder.Location;
/**
*
* @author venky
*/
public class City {
private Location location;
public City(String name){
this.location = GeoCoder.getLocation(name);
}
public Location getLocation() {
return location;
}
}