com.venky.geo.GeoLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
package com.venky.geo;
public interface GeoLocation {
public Float getLatitude();
public void setLatitude(Float latitude);
public Float getLongitude();
public void setLongitude(Float longitude);
}