|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.esri.aims.mtier.model.map.layer.renderer.ValueMap
Implements an abstract ValueMap object.
Constructor Summary | |
ValueMap()
Constructs an instance of a ValueMap object. |
Method Summary | |
String |
getLabel()
Returns the label associated with the Other object. |
Symbol |
getSymbol()
Returns the Symbol associated with this Other object. |
abstract String |
getType()
Returns the name string defining the type of Renderer. |
void |
setLabel(String value)
Sets the given value as label for the Other object. |
void |
setSymbol(Object object)
Sets the given Symbol object to the Other object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public ValueMap()
ValueMap
object.
Example: ValueMap valueMap = new ValueMap();
Method Detail |
public abstract String getType()
public void setLabel(String value)
Other
object. The Label is used for the legend.
Example: valueMap.setLabel("Logan");
value
- the label as string.getLabel()
public String getLabel()
Other
object.
Example: String label = valueMap.getLabel();
setLabel(java.lang.String)
public void setSymbol(Object object)
Symbol
object to the Other
object.
Example:
SimplePolygonSymbol simplePolygon = new SimplePolygonSymbol();
simplePolygon.setFillColor("255,0,0");
valueMap.setSymbol(simplePolygon);
object
- the symbol object.getSymbol()
public Symbol getSymbol()
Symbol
associated with this Other
object.
Example:
Symbol symbol = valueMap.getSymbol();
setSymbol(java.lang.Object)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |