org.geotools.styling
Interface ColorMapEntry

All Superinterfaces:
GTComponent
All Known Implementing Classes:
ColorMapEntryImpl

public interface ColorMapEntry
extends GTComponent

A basic interface for objects which can hold color map entries.

 
  <xs:element name="ColorMapEntry">
  <xs:complexType>
  <xs:attribute name="color" type="xs:string" use="required"/>
  <xs:attribute name="opacity" type="xs:double"/>
  <xs:attribute name="quantity" type="xs:double"/>
  <xs:attribute name="label" type="xs:string"/>
  </xs:complexType>
  </xs:element>
  


Method Summary
 Expression getColor()
           
 java.lang.String getLabel()
           
 Expression getOpacity()
           
 Expression getQuantity()
           
 void setColor(Expression color)
           
 void setLabel(java.lang.String label)
           
 void setOpacity(Expression opacity)
           
 void setQuantity(Expression quantity)
           
 
Methods inherited from interface org.geotools.event.GTComponent
changed, getNote, getParent, removed, setNote
 

Method Detail

getLabel

public java.lang.String getLabel()

setLabel

public void setLabel(java.lang.String label)

setColor

public void setColor(Expression color)

getColor

public Expression getColor()

setOpacity

public void setOpacity(Expression opacity)

getOpacity

public Expression getOpacity()

setQuantity

public void setQuantity(Expression quantity)

getQuantity

public Expression getQuantity()


Copyright © GeoTools. All Rights Reserved.