/** * Copyright (c) 2011 Object Management Group (SAEM metamodel) * Copyright (c) 2010-2011 United States Government as represented by the Administrator for The National Aeronautics and Space Administration. All Rights Reserved. */ package net.certware.evidence.evidence; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Document</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.evidence.Document#getTitle <em>Title</em>}</li> * <li>{@link net.certware.evidence.evidence.Document#getProperty <em>Property</em>}</li> * <li>{@link net.certware.evidence.evidence.Document#getAttribute <em>Attribute</em>}</li> * </ul> * </p> * * @see net.certware.evidence.evidence.EvidencePackage#getDocument() * @model * @generated */ public interface Document extends Exhibit { /** * Returns the value of the '<em><b>Title</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Title</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Title</em>' attribute. * @see #setTitle(String) * @see net.certware.evidence.evidence.EvidencePackage#getDocument_Title() * @model * @generated */ String getTitle(); /** * Sets the value of the '{@link net.certware.evidence.evidence.Document#getTitle <em>Title</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Title</em>' attribute. * @see #getTitle() * @generated */ void setTitle(String value); /** * Returns the value of the '<em><b>Property</b></em>' containment reference list. * The list contents are of type {@link net.certware.evidence.evidence.DocumentProperty}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Property</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>Property</em>' containment reference list. * @see net.certware.evidence.evidence.EvidencePackage#getDocument_Property() * @model containment="true" * @generated */ EList<DocumentProperty> getProperty(); /** * Returns the value of the '<em><b>Attribute</b></em>' containment reference list. * The list contents are of type {@link net.certware.evidence.evidence.DocumentAttribute}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Attribute</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>Attribute</em>' containment reference list. * @see net.certware.evidence.evidence.EvidencePackage#getDocument_Attribute() * @model containment="true" * @generated */ EList<DocumentAttribute> getAttribute(); } // Document