/** * * * * $Id$ */ package net.opengis.wfs; import javax.xml.namespace.QName; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Property Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs.WfsPackage#getPropertyType() * @model extendedMetaData="name='PropertyType' kind='elementOnly'" * @generated */ public interface PropertyType extends EObject { /** * Returns the value of the 'Name' attribute. * * * * * The Name element contains the name of a feature property * to be updated. * * * @return the value of the 'Name' attribute. * @see #setName(Object) * @see net.opengis.wfs.WFSPackage#getPropertyType_Name() * @model */ QName getName(); /** * Sets the value of the '{@link net.opengis.wfs.PropertyType#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(QName value); /** * Returns the value of the 'Value' containment reference. * * * * * The Value element contains the replacement value for the * named property. * * @return the value of the 'Value' containment reference. * @see #setValue(EObject) * @see net.opengis.wfs.WFSPackage#getPropertyType_Value() * @model */ Object getValue(); /** * Sets the value of the '{@link net.opengis.wfs.PropertyType#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(Object value); } // PropertyType