/** * * * * $Id$ */ package net.opengis.fes20; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Spatial Operator Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.fes20.Fes20Package#getSpatialOperatorType() * @model extendedMetaData="name='SpatialOperatorType' kind='elementOnly'" * @generated */ public interface SpatialOperatorType extends EObject { /** * Returns the value of the 'Geometry Operands' containment reference. * *

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

* * @return the value of the 'Geometry Operands' containment reference. * @see #setGeometryOperands(GeometryOperandsType) * @see net.opengis.fes20.Fes20Package#getSpatialOperatorType_GeometryOperands() * @model containment="true" * extendedMetaData="kind='element' name='GeometryOperands' namespace='##targetNamespace'" * @generated */ GeometryOperandsType getGeometryOperands(); /** * Sets the value of the '{@link net.opengis.fes20.SpatialOperatorType#getGeometryOperands Geometry Operands}' containment reference. * * * @param value the new value of the 'Geometry Operands' containment reference. * @see #getGeometryOperands() * @generated */ void setGeometryOperands(GeometryOperandsType value); /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(Object) * @see net.opengis.fes20.Fes20Package#getSpatialOperatorType_Name() * @model dataType="net.opengis.fes20.SpatialOperatorNameType" * extendedMetaData="kind='attribute' name='name'" * @generated */ Object getName(); /** * Sets the value of the '{@link net.opengis.fes20.SpatialOperatorType#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(Object value); } // SpatialOperatorType