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;
/**
*
* @author venky
*/
public class City {
private GeoLocation location;
public City(String name){
this.location = new GeoCoder().getLocation(name);
}
public GeoLocation getLocation() {
return location;
}
}