org.geotools.styling
Interface FeatureTypeConstraint

All Superinterfaces:
GTComponent
All Known Implementing Classes:
FeatureTypeConstraintImpl

public interface FeatureTypeConstraint
extends GTComponent

A FeatureTypeConstraint identifies a specific feature type and supplies fitlering.

The details of this object are taken from the OGC Styled-Layer Descriptor Report (OGC 02-070) version 1.0.0.:


 <xsd:element name="FeatureTypeConstraint">
   <xsd:annotation>
     <xsd:documentation>
       A FeatureTypeConstraint identifies a specific feature type and
       supplies fitlering.
     </xsd:documentation>
   </xsd:annotation>
   <xsd:complexType>
     <xsd:sequence>
       <xsd:element ref="sld:FeatureTypeName" minOccurs="0"/>
       <xsd:element ref="ogc:Filter" minOccurs="0"/>
       <xsd:element ref="sld:Extent" minOccurs="0" maxOccurs="unbounded"/>
     </xsd:sequence>
   </xsd:complexType>
 </xsd:element>
 

Author:
James Macgill

Method Summary
 void accept(StyleVisitor visitor)
           
 Extent[] getExtents()
           
 java.lang.String getFeatureTypeName()
           
 Filter getFilter()
           
 void setExtents(Extent[] extents)
           
 void setFeatureTypeName(java.lang.String name)
           
 void setFilter(Filter filter)
           
 
Methods inherited from interface org.geotools.event.GTComponent
changed, getNote, getParent, removed, setNote
 

Method Detail

getFeatureTypeName

public java.lang.String getFeatureTypeName()

setFeatureTypeName

public void setFeatureTypeName(java.lang.String name)

getFilter

public Filter getFilter()

setFilter

public void setFilter(Filter filter)

getExtents

public Extent[] getExtents()

setExtents

public void setExtents(Extent[] extents)

accept

public void accept(StyleVisitor visitor)


Copyright © GeoTools. All Rights Reserved.