Newer
Older
MapPush / src / D.java
public class D {
	private double value;
	public double getValue() {
		return this.value;
	}
	public void updateLongitude(double longitude) {
		this.value = longitude;
	}
}