blob: 3408859f0d9a04a30b3df151be5eeb94d1c35a76 [file] [log] [blame]
/**
* Copyright (c) 2017 CEA LIST. 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 a; http://www.eclipse.org/legal/epl-v10.html Contributors: - Initial API and implementation Yupanqui Munoz Julho (CEA LIST) - Initial API and implementation
*/
package org.eclipse.papyrus.requirements.sysml.papyrusre.papyrusre.Glossary;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.PrimitiveType;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Term</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.requirements.sysml.papyrusre.papyrusre.Glossary.Term#getDefinition <em>Definition</em>}</li>
* <li>{@link org.eclipse.papyrus.requirements.sysml.papyrusre.papyrusre.Glossary.Term#getBase_PrimitiveType <em>Base Primitive Type</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.requirements.sysml.papyrusre.papyrusre.Glossary.GlossaryPackage#getTerm()
* @model
* @generated
*/
public interface Term extends EObject {
/**
* Returns the value of the '<em><b>Definition</b></em>' attribute.
* The default value is <code>" "</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Definition</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Definition</em>' attribute.
* @see #setDefinition(String)
* @see org.eclipse.papyrus.requirements.sysml.papyrusre.papyrusre.Glossary.GlossaryPackage#getTerm_Definition()
* @model default=" " dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
String getDefinition();
/**
* Sets the value of the '{@link org.eclipse.papyrus.requirements.sysml.papyrusre.papyrusre.Glossary.Term#getDefinition <em>Definition</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Definition</em>' attribute.
* @see #getDefinition()
* @generated
*/
void setDefinition(String value);
/**
* Returns the value of the '<em><b>Base Primitive Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Primitive 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>Base Primitive Type</em>' reference.
* @see #setBase_PrimitiveType(PrimitiveType)
* @see org.eclipse.papyrus.requirements.sysml.papyrusre.papyrusre.Glossary.GlossaryPackage#getTerm_Base_PrimitiveType()
* @model ordered="false"
* @generated
*/
PrimitiveType getBase_PrimitiveType();
/**
* Sets the value of the '{@link org.eclipse.papyrus.requirements.sysml.papyrusre.papyrusre.Glossary.Term#getBase_PrimitiveType <em>Base Primitive Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Primitive Type</em>' reference.
* @see #getBase_PrimitiveType()
* @generated
*/
void setBase_PrimitiveType(PrimitiveType value);
} // Term