Package net.opengis.wfs
Interface PropertyType
-
- All Superinterfaces:
EObject,Notifier
- All Known Implementing Classes:
PropertyTypeImpl
public interface PropertyType extends EObjectA representation of the model object 'Property Type'.The following features are supported:
- See Also:
WfsPackage.getPropertyType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QNamegetName()Returns the value of the 'Name' attribute.ObjectgetValue()Returns the value of the 'Value' containment reference.voidsetName(QName value)Sets the value of the 'Name' attribute.voidsetValue(Object value)Sets the value of the 'Value' attribute.
-
-
-
Method Detail
-
getName
QName getName()
Returns the value of the 'Name' attribute. The Name element contains the name of a feature property to be updated.- Returns:
- the value of the 'Name' attribute.
- See Also:
#setName(Object),net.opengis.wfs.WFSPackage#getPropertyType_Name()
-
setName
void setName(QName value)
Sets the value of the 'Name' attribute.- Parameters:
value- the new value of the 'Name' attribute.- See Also:
getName()
-
getValue
Object getValue()
Returns the value of the 'Value' containment reference. The Value element contains the replacement value for the named property.- Returns:
- the value of the 'Value' containment reference.
- See Also:
#setValue(EObject),net.opengis.wfs.WFSPackage#getPropertyType_Value()
-
setValue
void setValue(Object value)
Sets the value of the 'Value' attribute.- Parameters:
value- the new value of the 'Value' attribute.- See Also:
getValue()
-
-