/* * GMUPositionListener.java * * Created on October 14, 2007, 2:44 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package gmu.WorldWindGPS; import gov.nasa.worldwind.event.PositionEvent; /** * * @author dfleck */ public interface GMUPositionListener { /** Called whenever the globe is moved and stopped. */ public void moved(PositionEvent p); }