/** * Copyright (c) 2013 United States Government as represented by the Administrator for The National Aeronautics and Space Administration. All Rights Reserved. * */ package net.certware.sacm.SACM.Evidence; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Exhibit</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.sacm.SACM.Evidence.Exhibit#getName <em>Name</em>}</li> * <li>{@link net.certware.sacm.SACM.Evidence.Exhibit#getUrl <em>Url</em>}</li> * <li>{@link net.certware.sacm.SACM.Evidence.Exhibit#getProperty <em>Property</em>}</li> * </ul> * </p> * * @see net.certware.sacm.SACM.Evidence.EvidencePackage#getExhibit() * @model * @generated */ public interface Exhibit extends EvidenceItem { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright (c) 2013 United States Government as represented by the Administrator for The National Aeronautics and Space Administration. All Rights Reserved.\n"; //$NON-NLS-1$ /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see net.certware.sacm.SACM.Evidence.EvidencePackage#getExhibit_Name() * @model dataType="net.certware.sacm.SACM.String" required="true" ordered="false" * @generated */ String getName(); /** * Sets the value of the '{@link net.certware.sacm.SACM.Evidence.Exhibit#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Url</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Url</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Url</em>' attribute. * @see #setUrl(String) * @see net.certware.sacm.SACM.Evidence.EvidencePackage#getExhibit_Url() * @model dataType="net.certware.sacm.SACM.String" required="true" ordered="false" * @generated */ String getUrl(); /** * Sets the value of the '{@link net.certware.sacm.SACM.Evidence.Exhibit#getUrl <em>Url</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Url</em>' attribute. * @see #getUrl() * @generated */ void setUrl(String value); /** * Returns the value of the '<em><b>Property</b></em>' containment reference list. * The list contents are of type {@link net.certware.sacm.SACM.Evidence.ExhibitProperty}. * <!-- 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.sacm.SACM.Evidence.EvidencePackage#getExhibit_Property() * @model containment="true" ordered="false" * @generated */ EList<ExhibitProperty> getProperty(); } // Exhibit