/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.gml; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Abstract Ring Property Type</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * * Encapsulates a ring to represent the surface boundary property of a surface. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.opengis.gml.AbstractRingPropertyType#getLinearRing <em>Linear Ring</em>}</li> * </ul> * </p> * * @see net.opengis.gml.GmlPackage#getAbstractRingPropertyType() * @model extendedMetaData="name='AbstractRingPropertyType' kind='elementOnly'" * @generated */ public interface AbstractRingPropertyType extends EObject { /** * Returns the value of the '<em><b>Linear Ring</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Linear Ring</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Linear Ring</em>' containment reference. * @see #setLinearRing(LinearRingType) * @see net.opengis.gml.GmlPackage#getAbstractRingPropertyType_LinearRing() * @model containment="true" required="true" * extendedMetaData="kind='element' name='LinearRing' namespace='##targetNamespace'" * @generated */ LinearRingType getLinearRing(); /** * Sets the value of the '{@link net.opengis.gml.AbstractRingPropertyType#getLinearRing <em>Linear Ring</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Linear Ring</em>' containment reference. * @see #getLinearRing() * @generated */ void setLinearRing(LinearRingType value); } // AbstractRingPropertyType