blob: 3dc8b34a8991cac80da95f49eb61d4425d4b97b2 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 IBM Corporation 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:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.uma;
import java.util.List;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Content Description</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Content Description is a Method Element that is used to store the textual description for a Content Element. It defines standard attributes applicable for all Content Element types. Specific Content Element sub-types can define their own matching Content Description sub-types.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.ContentDescription#getMainDescription <em>Main Description</em>}</li>
* <li>{@link org.eclipse.epf.uma.ContentDescription#getSections <em>Sections</em>}</li>
* <li>{@link org.eclipse.epf.uma.ContentDescription#getKeyConsiderations <em>Key Considerations</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getContentDescription()
* @model
* @generated
*/
public interface ContentDescription extends MethodUnit {
/**
* Returns the value of the '<em><b>Main Description</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* This attribute store the main descriptive text for the Content Element. All text that is not part of any of the more specific attributes shall be stored here. If the Content Description is divided into sections using the Section class, then only the text from the 'start' of the content description to the first section will be stored here (similar to a normal document where you can place text between its beginning to its first diction heading).
* <!-- end-model-doc -->
* @return the value of the '<em>Main Description</em>' attribute.
* @see #setMainDescription(String)
* @see org.eclipse.epf.uma.UmaPackage#getContentDescription_MainDescription()
* @model default="" dataType="org.eclipse.epf.uma.String"
* @generated
*/
String getMainDescription();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.ContentDescription#getMainDescription <em>Main Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Main Description</em>' attribute.
* @see #getMainDescription()
* @generated
*/
void setMainDescription(String value);
/**
* Returns the value of the '<em><b>Sections</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.epf.uma.Section}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Sections</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Sections</em>' containment reference list.
* @see org.eclipse.epf.uma.UmaPackage#getContentDescription_Sections()
* @model type="org.eclipse.epf.uma.Section" containment="true" resolveProxies="true" ordered="false"
* @generated
*/
List getSections();
/**
* Returns the value of the '<em><b>Key Considerations</b></em>' attribute.
* The default value is <code>""</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Key Considerations provides advise and guidance of a critical nature for the content element as well as warnings, cautions, pitfalls, dangers.
* <!-- end-model-doc -->
* @return the value of the '<em>Key Considerations</em>' attribute.
* @see #setKeyConsiderations(String)
* @see org.eclipse.epf.uma.UmaPackage#getContentDescription_KeyConsiderations()
* @model default="" dataType="org.eclipse.epf.uma.String"
* @generated
*/
String getKeyConsiderations();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.ContentDescription#getKeyConsiderations <em>Key Considerations</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Key Considerations</em>' attribute.
* @see #getKeyConsiderations()
* @generated
*/
void setKeyConsiderations(String value);
} // ContentDescription