deegree 2.5 (2011/06/29 09:44 build-8-official)

Uses of Interface
org.deegree.model.feature.FeatureProperty

Packages that use FeatureProperty
org.deegree.graphics.displayelements   
org.deegree.io.datastore   
org.deegree.io.datastore.sde   
org.deegree.io.datastore.sql   
org.deegree.io.datastore.sql.generic   
org.deegree.io.datastore.sql.transaction   
org.deegree.io.shpapi   
org.deegree.model.feature   
org.deegree.ogcwebservices.csw.manager   
org.deegree.ogcwebservices.wfs.operation.transaction   
 

Uses of FeatureProperty in org.deegree.graphics.displayelements
 

Methods in org.deegree.graphics.displayelements that return FeatureProperty
 FeatureProperty ScaledFeature.getDefaultProperty(PropertyPath path)
           
 FeatureProperty ScaledFeature.getDefaultProperty(QualifiedName name)
          use '$SCALE' to access the scale property value
 FeatureProperty ScaledFeature.getOwner()
           
 FeatureProperty[] ScaledFeature.getProperties()
           
 FeatureProperty[] ScaledFeature.getProperties(int index)
          The property '$SCALE' has the highest valid index
 FeatureProperty[] ScaledFeature.getProperties(QualifiedName name)
           
 

Methods in org.deegree.graphics.displayelements with parameters of type FeatureProperty
 void ScaledFeature.addProperty(FeatureProperty property)
           
 void ScaledFeature.replaceProperty(FeatureProperty oldProperty, FeatureProperty newProperty)
           
 void ScaledFeature.setProperty(FeatureProperty property, int index)
           
 

Uses of FeatureProperty in org.deegree.io.datastore
 

Method parameters in org.deegree.io.datastore with type arguments of type FeatureProperty
 int DatastoreTransaction.performUpdate(MappedFeatureType mappedFeatureType, java.util.Map<PropertyPath,FeatureProperty> replacementProps, Filter filter, java.lang.String lockId)
          Performs an update operation against the datastore.
 

Uses of FeatureProperty in org.deegree.io.datastore.sde
 

Method parameters in org.deegree.io.datastore.sde with type arguments of type FeatureProperty
 int SDEUpdateHandler.performUpdate(MappedFeatureType ft, java.util.Map<PropertyPath,FeatureProperty> properties, Filter filter)
          Performs an update operation against the associated datastore.
 int SDETransaction.performUpdate(MappedFeatureType mappedFeatureType, java.util.Map<PropertyPath,FeatureProperty> replacementProps, Filter filter, java.lang.String lockId)
          Performs an update operation against the datastore.
 

Uses of FeatureProperty in org.deegree.io.datastore.sql
 

Fields in org.deegree.io.datastore.sql with type parameters of type FeatureProperty
protected  java.util.Map<FeatureId,java.util.List<FeatureProperty>> FeatureFetcher.fidToPropertyMap
           
 

Uses of FeatureProperty in org.deegree.io.datastore.sql.generic
 

Method parameters in org.deegree.io.datastore.sql.generic with type arguments of type FeatureProperty
 int GenericSQLTransaction.performUpdate(MappedFeatureType mappedFeatureType, java.util.Map<PropertyPath,FeatureProperty> replacementProps, Filter filter, java.lang.String lockId)
           
 

Uses of FeatureProperty in org.deegree.io.datastore.sql.transaction
 

Method parameters in org.deegree.io.datastore.sql.transaction with type arguments of type FeatureProperty
 int UpdateHandler.performUpdate(MappedFeatureType ft, java.util.Map<PropertyPath,FeatureProperty> replacementProps, Filter filter)
          Performs an update operation against the associated datastore.
 int SQLTransaction.performUpdate(MappedFeatureType mappedFeatureType, java.util.Map<PropertyPath,FeatureProperty> replacementProps, Filter filter, java.lang.String lockId)
          Performs an update operation against the datastore.
 

Uses of FeatureProperty in org.deegree.io.shpapi
 

Methods in org.deegree.io.shpapi that return FeatureProperty
 FeatureProperty[] ShapeFile.getFeatureProperties(FeatureCollection fc, int n)
          Copies the feature properties of a feature.
 

Uses of FeatureProperty in org.deegree.model.feature
 

Classes in org.deegree.model.feature that implement FeatureProperty
(package private)  class DefaultFeatureProperty
          the interface describes a property entry of a feature.
 class GeneratedValueFeatureProperty
          TODO add class documentation here
 class XLinkedFeatureProperty
          Feature property instance that does not specify it's content inline, but references a feature instance via an XLink.
 

Fields in org.deegree.model.feature declared as FeatureProperty
protected  FeatureProperty AbstractFeature.owner
           
protected  FeatureProperty[] DefaultFeature.properties
           
 

Methods in org.deegree.model.feature that return FeatureProperty
static FeatureProperty FeatureFactory.createFeatureProperty(QualifiedName name, java.lang.Object value)
          creates an instance of a FeatureProperty from its name and the data (value) it contains
static FeatureProperty FeatureFactory.createFeatureProperty(java.lang.String name, java.lang.Object value)
          Deprecated. use (QualifiedName, Object) instead
static FeatureProperty FeatureFactory.createGeneratedValueFeatureProperty(QualifiedName name, ValueGenerator valueGenerator)
          creates an instance of a @see FeatureProperty from its name.
 FeatureProperty FeatureTupleCollection.getDefaultProperty(PropertyPath path)
           
 FeatureProperty DefaultFeatureCollection.getDefaultProperty(PropertyPath path)
           
 FeatureProperty DefaultFeature.getDefaultProperty(PropertyPath path)
          Returns the property of the feature identified by the given PropertyPath in their original order.
 FeatureProperty Feature.getDefaultProperty(PropertyPath path)
          Returns the property of the feature identified by the given PropertyPath.
 FeatureProperty AbstractFeatureCollection.getDefaultProperty(QualifiedName name)
          returns the default property of a feature collection with the passed name
 FeatureProperty DefaultFeature.getDefaultProperty(QualifiedName name)
          Returns the first property of the feature with the given name.
 FeatureProperty Feature.getDefaultProperty(QualifiedName name)
          Returns the first property of the feature with the given name.
 FeatureProperty AbstractFeature.getOwner()
           
 FeatureProperty Feature.getOwner()
          Returns the owner of the feature.
 FeatureProperty[] AbstractFeatureCollection.getProperties()
          returns all properties of a feature collection
 FeatureProperty[] DefaultFeature.getProperties()
          Returns all properties of the feature in their original order.
 FeatureProperty[] Feature.getProperties()
          Returns all properties of the feature in their original order.
 FeatureProperty[] AbstractFeatureCollection.getProperties(int index)
          returns the properties of a feature collection at the passed index position
 FeatureProperty[] DefaultFeature.getProperties(int index)
          Deprecated.  
 FeatureProperty[] Feature.getProperties(int index)
          Deprecated.  
 FeatureProperty[] AbstractFeatureCollection.getProperties(QualifiedName name)
          returns the named properties of a feature collection
 FeatureProperty[] DefaultFeature.getProperties(QualifiedName name)
          Returns the properties of the feature with the given name in their original order.
 FeatureProperty[] Feature.getProperties(QualifiedName name)
          Returns the properties of the feature with the given name in their original order.
 FeatureProperty GMLFeatureDocument.parseProperty(org.w3c.dom.Element propertyElement, FeatureType ft)
          Returns the object representation for the given property element.
 FeatureProperty GMLFeatureDocument.parseProperty(org.w3c.dom.Element propertyElement, FeatureType ft, java.lang.String srsName)
          Returns the object representation for the given property element.
 

Methods in org.deegree.model.feature with parameters of type FeatureProperty
 void FeatureTupleCollection.addProperty(FeatureProperty property)
           
 void DefaultFeatureCollection.addProperty(FeatureProperty property)
           
 void DefaultFeature.addProperty(FeatureProperty property)
          Adds the given property to the feature's properties.
 void Feature.addProperty(FeatureProperty property)
          Adds the given property to the feature's properties.
static Feature FeatureFactory.createFeature(java.lang.String id, FeatureType featureType, FeatureProperty[] properties)
          creates an instance of a Feature from its FeatureType and an array of Objects that represents it properties.
 void FeatureTupleCollection.replaceProperty(FeatureProperty oldProperty, FeatureProperty newProperty)
           
 void DefaultFeatureCollection.replaceProperty(FeatureProperty oldProperty, FeatureProperty newProperty)
           
 void DefaultFeature.replaceProperty(FeatureProperty oldProperty, FeatureProperty newProperty)
          Replaces the given property with a new one.
 void Feature.replaceProperty(FeatureProperty oldProperty, FeatureProperty newProperty)
          Replaces the given property with a new one.
 void AbstractFeatureCollection.setProperty(FeatureProperty property)
          sets a property of a feature collection.
 void FeatureTupleCollection.setProperty(FeatureProperty property, int index)
           
 void DefaultFeatureCollection.setProperty(FeatureProperty property, int index)
           
 void DefaultFeature.setProperty(FeatureProperty property, int index)
          Sets the value for the given property.
 void Feature.setProperty(FeatureProperty property, int index)
          Sets the value for the given property.
 

Method parameters in org.deegree.model.feature with type arguments of type FeatureProperty
static Feature FeatureFactory.createFeature(java.lang.String id, FeatureType featureType, java.util.List<FeatureProperty> properties)
          creates an instance of a Feature from its FeatureType and an array of Objects that represents it properties.
 

Constructors in org.deegree.model.feature with parameters of type FeatureProperty
AbstractFeature(java.lang.String id, FeatureType featureType, FeatureProperty owner)
           
DefaultFeature(java.lang.String id, FeatureType featureType, FeatureProperty[] properties)
          Creates a new instance of DefaultFeature from the given parameters.
DefaultFeature(java.lang.String id, FeatureType featureType, FeatureProperty[] properties, FeatureProperty owner)
          Creates a new instance of DefaultFeature from the given parameters.
DefaultFeature(java.lang.String id, FeatureType featureType, FeatureProperty[] properties, FeatureProperty owner)
          Creates a new instance of DefaultFeature from the given parameters.
 

Uses of FeatureProperty in org.deegree.ogcwebservices.csw.manager
 

Methods in org.deegree.ogcwebservices.csw.manager that return types with arguments of type FeatureProperty
 java.util.List<FeatureProperty> Update.getRecordProperties()
          The element contains a element and a element.
 

Constructor parameters in org.deegree.ogcwebservices.csw.manager with type arguments of type FeatureProperty
Update(java.lang.String handle, java.net.URI typeName, Filter constraint, org.w3c.dom.Element record, java.util.List<FeatureProperty> recordProperties)
           
 

Uses of FeatureProperty in org.deegree.ogcwebservices.wfs.operation.transaction
 

Methods in org.deegree.ogcwebservices.wfs.operation.transaction that return types with arguments of type FeatureProperty
 java.util.Map<PropertyPath,FeatureProperty> Update.getReplacementProperties()
          Return the properties and their replacement values that are targeted by this update operation.
 

Method parameters in org.deegree.ogcwebservices.wfs.operation.transaction with type arguments of type FeatureProperty
 void Update.setReplacementProperties(java.util.Map<PropertyPath,FeatureProperty> replacementProps)
          Setter method for replacement properties
 

Constructor parameters in org.deegree.ogcwebservices.wfs.operation.transaction with type arguments of type FeatureProperty
Update(java.lang.String handle, QualifiedName typeName, java.util.Map<PropertyPath,FeatureProperty> replacementProps, Filter filter)
          Creates a new Update instance.
Update(java.lang.String handle, QualifiedName typeName, java.util.Map<PropertyPath,FeatureProperty> replacementProps, java.util.Map<PropertyPath,org.w3c.dom.Node> rawProps, Filter filter)
          Deprecated. This method breaks the layering -- it makes the DOM representation available.
 


deegree 2.5 (2011/06/29 09:44 build-8-official)

an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://www.deegree.org