org.geotools.styling
Interface ColorMapEntry

All Known Implementing Classes:
ColorMapEntryImpl

public interface ColorMapEntry

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>
  

Module:

Method Summary
 void accept(StyleVisitor visitor)
           
 Expression getColor()
           
 String getLabel()
           
 Expression getOpacity()
           
 Expression getQuantity()
           
 void setColor(Expression color)
           
 void setLabel(String label)
           
 void setOpacity(Expression opacity)
           
 void setQuantity(Expression quantity)
           
 

Method Detail

getLabel

String getLabel()

setLabel

void setLabel(String label)

setColor

void setColor(Expression color)

getColor

Expression getColor()

setOpacity

void setOpacity(Expression opacity)

getOpacity

Expression getOpacity()

setQuantity

void setQuantity(Expression quantity)

getQuantity

Expression getQuantity()

accept

void accept(StyleVisitor visitor)


Copyright © 1996-2009 Geotools. All Rights Reserved.