blob: 3649c565bccd793cd652d2ffe54778a32a84acfd [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: ArtifactDescription.java,v 1.2 2006/06/23 00:01:27 jxi Exp $
*/
package org.eclipse.epf.xml.uma;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Artifact Description</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A generalized Work Product Description that is used to store the textual description for an Artifact.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.xml.uma.ArtifactDescription#getBriefOutline <em>Brief Outline</em>}</li>
* <li>{@link org.eclipse.epf.xml.uma.ArtifactDescription#getRepresentationOptions <em>Representation Options</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.xml.uma.UmaPackage#getArtifactDescription()
* @model extendedMetaData="name='ArtifactDescription' kind='elementOnly'"
* @generated
*/
public interface ArtifactDescription extends WorkProductDescription {
/**
* Returns the value of the '<em><b>Brief Outline</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Provides a brief description of the information that can be found in this artifact. For example, discusses the contents for key chapters of a document artifact or the key packages and modules of a model artifact.
* <!-- end-model-doc -->
* @return the value of the '<em>Brief Outline</em>' attribute.
* @see #setBriefOutline(String)
* @see org.eclipse.epf.xml.uma.UmaPackage#getArtifactDescription_BriefOutline()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='element' name='BriefOutline'"
* @generated
*/
String getBriefOutline();
/**
* Sets the value of the '{@link org.eclipse.epf.xml.uma.ArtifactDescription#getBriefOutline <em>Brief Outline</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Brief Outline</em>' attribute.
* @see #getBriefOutline()
* @generated
*/
void setBriefOutline(String value);
/**
* Returns the value of the '<em><b>Representation Options</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Discusses different possible alternative representations for the artifact. For example a design model can be represented as a UML model or an informal block diagram or by textual description only.
* <!-- end-model-doc -->
* @return the value of the '<em>Representation Options</em>' attribute.
* @see #setRepresentationOptions(String)
* @see org.eclipse.epf.xml.uma.UmaPackage#getArtifactDescription_RepresentationOptions()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='element' name='RepresentationOptions'"
* @generated
*/
String getRepresentationOptions();
/**
* Sets the value of the '{@link org.eclipse.epf.xml.uma.ArtifactDescription#getRepresentationOptions <em>Representation Options</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Representation Options</em>' attribute.
* @see #getRepresentationOptions()
* @generated
*/
void setRepresentationOptions(String value);
} // ArtifactDescription