Updated to worldwind release 20070817
[worldwind-tracker.git] / gov / nasa / worldwind / pick / PlaceName.java
blob4d206675ccf1df6501e3baf67f4ece6a2b4f5f60
1 /*
2 Copyright (C) 2001, 2006 United States Government as represented by
3 the Administrator of the National Aeronautics and Space Administration.
4 All Rights Reserved.
5 */
6 package gov.nasa.worldwind.pick;
8 import gov.nasa.worldwind.geom.Position;
9 import gov.nasa.worldwind.render.WWIcon;
11 import java.awt.*;
13 /**
14 * @author dcollins
15 * @version $Id: PlaceName.java 2471 2007-07-31 21:50:57Z tgaskins $
17 public interface PlaceName
19 String getText();
21 void setText(String text);
23 Position getPosition();
25 void setPosition(Position position);
27 Font getFont();
29 void setFont(Font font);
31 Color getColor();
33 void setColor(Color color);
35 boolean isVisible();
37 void setVisible(boolean visible);
39 WWIcon getIcon();
41 void setIcon(WWIcon icon);