public class C { private double value; public double getValue() { return this.value; } public void updateLatitude(double latitude) { this.value = latitude; } }