Class ExtrudedPolygonBuilder.PolygonEntry
- java.lang.Object
-
- gov.nasa.worldwind.avlist.AVListImpl
-
- gov.nasa.worldwind.WWObjectImpl
-
- gov.nasa.worldwindx.examples.shapebuilder.ExtrudedPolygonBuilder.PolygonEntry
-
- All Implemented Interfaces:
AVList,MessageListener,WWObject,java.beans.PropertyChangeListener,java.util.EventListener
- Enclosing class:
- ExtrudedPolygonBuilder
protected static class ExtrudedPolygonBuilder.PolygonEntry extends WWObjectImpl
-
-
Field Summary
Fields Modifier and Type Field Description protected ShapeAttributesattributesprotected booleaneditingprotected ExtrudedPolygonpolygonprotected booleanselected
-
Constructor Summary
Constructors Constructor Description PolygonEntry(ExtrudedPolygon polygon)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ShapeAttributesgetAttributes()java.lang.StringgetName()ExtrudedPolygongetPolygon()java.lang.ObjectgetValue(java.lang.String key)Returns the value for a specified key.booleanisEditing()booleanisSelected()voidsetEditing(boolean editing)voidsetName(java.lang.String name)voidsetSelected(boolean selected)java.lang.ObjectsetValue(java.lang.String key, java.lang.Object value)Adds a key/value pair to the list.java.lang.StringtoString()protected voidupdateAttributes()-
Methods inherited from class gov.nasa.worldwind.WWObjectImpl
onMessage, propertyChange
-
Methods inherited from class gov.nasa.worldwind.avlist.AVListImpl
addPropertyChangeListener, addPropertyChangeListener, clearList, copy, firePropertyChange, firePropertyChange, getBooleanValue, getBooleanValue, getChangeSupport, getDoubleValue, getDoubleValue, getEntries, getIntegerValue, getIntegerValue, getLongValue, getLongValue, getRestorableStateForAVPair, getStringValue, getStringValue, getStringValue, getValues, hasKey, removeKey, removePropertyChangeListener, removePropertyChangeListener, setValues
-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface gov.nasa.worldwind.avlist.AVList
addPropertyChangeListener, addPropertyChangeListener, clearList, copy, firePropertyChange, firePropertyChange, getEntries, getStringValue, getValues, hasKey, removeKey, removePropertyChangeListener, removePropertyChangeListener, setValues
-
-
-
-
Field Detail
-
polygon
protected ExtrudedPolygon polygon
-
attributes
protected ShapeAttributes attributes
-
editing
protected boolean editing
-
selected
protected boolean selected
-
-
Constructor Detail
-
PolygonEntry
public PolygonEntry(ExtrudedPolygon polygon)
-
-
Method Detail
-
isEditing
public boolean isEditing()
-
setEditing
public void setEditing(boolean editing)
-
isSelected
public boolean isSelected()
-
setSelected
public void setSelected(boolean selected)
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
getPolygon
public ExtrudedPolygon getPolygon()
-
getAttributes
public ShapeAttributes getAttributes()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getValue
public java.lang.Object getValue(java.lang.String key)
Description copied from interface:AVListReturns the value for a specified key.- Specified by:
getValuein interfaceAVList- Overrides:
getValuein classAVListImpl- Parameters:
key- the attribute name. May not benull.- Returns:
- the attribute value if one exists in the collection, otherwise
null.
-
setValue
public java.lang.Object setValue(java.lang.String key, java.lang.Object value)Description copied from interface:AVListAdds a key/value pair to the list. Replaces an existing key/value pair if the list already contains the key.- Specified by:
setValuein interfaceAVList- Overrides:
setValuein classAVListImpl- Parameters:
key- the attribute name. May not benull.value- the attribute value. May benull, in which case any existing value for the key is removed from the collection.- Returns:
- previous value associated with specified key, or null if there was no mapping for key. A null return can also indicate that the map previously associated null with the specified key, if the implementation supports null values.
-
updateAttributes
protected void updateAttributes()
-
-