/* Copyright (C) 2001, 2006 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved. */ package gov.nasa.worldwind; import gov.nasa.worldwind.geom.Position; /** * @author tag * @version $Id: Locatable.java 2471 2007-07-31 21:50:57Z tgaskins $ */ public interface Locatable { public Position getPosition(); }