blob: f0bcb3074a173872e31360a9bd15c11ae13ed43f [file] [log] [blame]
/**
* Copyright (c) 2013 itemis AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Mark Broerkens - initial API and implementation
*
*/
package org.eclipse.rmf.reqif10;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Spec Object</b></em>'. <!-- end-user-doc -->
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rmf.reqif10.SpecObject#getType <em>Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rmf.reqif10.ReqIF10Package#getSpecObject()
* @model extendedMetaData="name='SPEC-OBJECT' kind='elementOnly'" annotation=
* "http:///org/eclipse/sphinx/emf/serialization/XMLPersistenceMappingExtendedMetaData wrapperName='SPEC-OBJECT'"
* @generated
*/
public interface SpecObject extends SpecElementWithAttributes {
/**
* Returns the value of the '<em><b>Type</b></em>' reference. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Type</em>' reference.
* @see #isSetType()
* @see #unsetType()
* @see #setType(SpecObjectType)
* @see org.eclipse.rmf.reqif10.ReqIF10Package#getSpecObject_Type()
* @model unsettable="true" required="true" ordered="false"
* extendedMetaData="name='TYPE' kind='element' namespace='##targetNamespace'" annotation=
* "http:///org/eclipse/sphinx/emf/serialization/XMLPersistenceMappingExtendedMetaData wrapperName='TYPE' featureWrapperElement='false' featureElement='true' classifierWrapperElement='false' classifierElement='true' classifierNameSuffix='-REF'"
* @generated
*/
SpecObjectType getType();
/**
* Sets the value of the '{@link org.eclipse.rmf.reqif10.SpecObject#getType <em>Type</em>}' reference. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Type</em>' reference.
* @see #isSetType()
* @see #unsetType()
* @see #getType()
* @generated
*/
void setType(SpecObjectType value);
/**
* Unsets the value of the '{@link org.eclipse.rmf.reqif10.SpecObject#getType <em>Type</em>}' reference. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @see #isSetType()
* @see #getType()
* @see #setType(SpecObjectType)
* @generated
*/
void unsetType();
/**
* Returns whether the value of the '{@link org.eclipse.rmf.reqif10.SpecObject#getType <em>Type</em>}' reference is
* set. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @return whether the value of the '<em>Type</em>' reference is set.
* @see #unsetType()
* @see #getType()
* @see #setType(SpecObjectType)
* @generated
*/
boolean isSetType();
} // SpecObject