Newer
Older
MapPush / src / C.java
public class C {
	private double value;
	public double getValue() {
		return this.value;
	}
	public void updateLatitude(double latitude) {
		this.value = latitude;
	}
}