Newer
Older
MapPush / src / MapLongitude.java
import java.util.*;

public class MapLongitude {
	private double value;
	public double getValue() {
		return this.value;
	}
	public void updateLongitude(double longitude) {
		this.value = longitude;
	}
}