/** * * * * $Id$ */ package net.opengis.wfs20; import org.eclipse.emf.ecore.EObject; import org.opengis.filter.expression.PropertyName; /** * * A representation of the model object 'Property Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getPropertyType() * @model extendedMetaData="name='PropertyType' kind='elementOnly'" * @generated */ public interface PropertyType extends EObject { /** * Returns the value of the 'Value Reference' containment reference. * *

* If the meaning of the 'Value Reference' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value Reference' containment reference. * @see #setValueReference(ValueReferenceType) * @see net.opengis.wfs20.Wfs20Package#getPropertyType_ValueReference() * @model */ ValueReferenceType getValueReference(); /** * Sets the value of the '{@link net.opengis.wfs20.PropertyType#getValueReference Value Reference}' reference. * * * @param value the new value of the 'Value Reference' reference. * @see #getValueReference() * @generated */ void setValueReference(ValueReferenceType value); /** * Returns the value of the 'Value' containment reference. * *

* If the meaning of the 'Value' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value' containment reference. * @see #setValue(EObject) * @see net.opengis.wfs20.Wfs20Package#getPropertyType_Value() * @model */ Object getValue(); /** * Sets the value of the '{@link net.opengis.wfs20.PropertyType#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(Object value); } // PropertyType