package class4_1_Observer; // MSOE. Dr. Yoder. 06 January 2016. public class AverageObserver implements PositionObserver { /** * Computes a running average of the position, * weighting more recent positions the highest. * * This method will automatically be called each second. * (A more general solution would include the time-stamp.) * * @param positionMeters the current position, in meters */ @Override public void update(double positionMeters) { /** TODO: In-class exercise */ } }