All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.venky.geo.City Maven / Gradle / Ivy

There is a newer version: 1.15
Show newest version
/*
 * 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;
    }
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy