/** * * * * $Id$ */ package net.opengis.wfs20; import org.eclipse.emf.ecore.util.FeatureMap; /** * * A representation of the model object 'Native Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getNativeType() * @model extendedMetaData="name='NativeType' kind='mixed'" * @generated */ public interface NativeType extends AbstractTransactionActionType { /** * Returns the value of the 'Mixed' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * *

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

* * @return the value of the 'Mixed' attribute list. * @see net.opengis.wfs20.Wfs20Package#getNativeType_Mixed() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" * extendedMetaData="kind='elementWildcard' name=':mixed'" * @generated */ FeatureMap getMixed(); /** * Returns the value of the 'Any' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * *

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

* * @return the value of the 'Any' attribute list. * @see net.opengis.wfs20.Wfs20Package#getNativeType_Any() * @model dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="false" transient="true" volatile="true" derived="true" * extendedMetaData="kind='elementWildcard' wildcards='##other' name=':2' processing='lax'" * @generated */ FeatureMap getAny(); /** * Returns the value of the 'Safe To Ignore' attribute. * *

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

* * @return the value of the 'Safe To Ignore' attribute. * @see #isSetSafeToIgnore() * @see #unsetSafeToIgnore() * @see #setSafeToIgnore(boolean) * @see net.opengis.wfs20.Wfs20Package#getNativeType_SafeToIgnore() * @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Boolean" required="true" * extendedMetaData="kind='attribute' name='safeToIgnore'" * @generated */ boolean isSafeToIgnore(); /** * Sets the value of the '{@link net.opengis.wfs20.NativeType#isSafeToIgnore Safe To Ignore}' attribute. * * * @param value the new value of the 'Safe To Ignore' attribute. * @see #isSetSafeToIgnore() * @see #unsetSafeToIgnore() * @see #isSafeToIgnore() * @generated */ void setSafeToIgnore(boolean value); /** * Unsets the value of the '{@link net.opengis.wfs20.NativeType#isSafeToIgnore Safe To Ignore}' attribute. * * * @see #isSetSafeToIgnore() * @see #isSafeToIgnore() * @see #setSafeToIgnore(boolean) * @generated */ void unsetSafeToIgnore(); /** * Returns whether the value of the '{@link net.opengis.wfs20.NativeType#isSafeToIgnore Safe To Ignore}' attribute is set. * * * @return whether the value of the 'Safe To Ignore' attribute is set. * @see #unsetSafeToIgnore() * @see #isSafeToIgnore() * @see #setSafeToIgnore(boolean) * @generated */ boolean isSetSafeToIgnore(); /** * Returns the value of the 'Vendor Id' attribute. * *

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

* * @return the value of the 'Vendor Id' attribute. * @see #setVendorId(String) * @see net.opengis.wfs20.Wfs20Package#getNativeType_VendorId() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='vendorId'" * @generated */ String getVendorId(); /** * Sets the value of the '{@link net.opengis.wfs20.NativeType#getVendorId Vendor Id}' attribute. * * * @param value the new value of the 'Vendor Id' attribute. * @see #getVendorId() * @generated */ void setVendorId(String value); } // NativeType