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

* The following features are supported: *

*

* * @see net.opengis.wfs.WfsPackage#getNativeType() * @model extendedMetaData="name='NativeType' kind='empty'" * @generated */ public interface NativeType extends EObject { /** * Returns the value of the 'Safe To Ignore' attribute. * * * * * In the event that a Web Feature Service does not recognize * the vendorId or does not recognize the vendor specific command, * the safeToIgnore attribute is used to indicate whether the * exception can be safely ignored. A value of TRUE means that * the Web Feature Service may ignore the command. A value of * FALSE means that a Web Feature Service cannot ignore the * command and an exception should be raised if a problem is * encountered. * * @return the value of the 'Safe To Ignore' attribute. * @see #isSetSafeToIgnore() * @see #unsetSafeToIgnore() * @see #setSafeToIgnore(boolean) * @see net.opengis.wfs.WfsPackage#getNativeType_SafeToIgnore() * @model unique="false" 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.wfs.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.wfs.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.wfs.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. * * * * * The vendorId attribute is used to specify the name of * vendor who's vendor specific command the client * application wishes to execute. * * @return the value of the 'Vendor Id' attribute. * @see #setVendorId(String) * @see net.opengis.wfs.WfsPackage#getNativeType_VendorId() * @model unique="false" 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.wfs.NativeType#getVendorId Vendor Id}' attribute. * * * @param value the new value of the 'Vendor Id' attribute. * @see #getVendorId() * @generated */ void setVendorId(String value); } // NativeType