Worldwind public release 0.2
[worldwind-tracker.git] / gov / nasa / worldwind / PlaceName.java
blob9fc6b1153b8f8381598611e0b0d9e5536377f49b
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;
8 import gov.nasa.worldwind.geom.*;
10 import java.awt.*;
12 /**
13 * @author dcollins
14 * @version $Id: PlaceName.java 1759 2007-05-07 19:27:49Z dcollins $
16 public interface PlaceName
18 String getText();
20 void setText(String text);
22 Position getPosition();
24 void setPosition(Position position);
26 Font getFont();
28 void setFont(Font font);
30 Color getColor();
32 void setColor(Color color);
34 boolean isVisible();
36 void setVisible(boolean visible);
38 WWIcon getIcon();
40 void setIcon(WWIcon icon);