/** * 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; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Resolution</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.sacm.SACM.Evidence.EvidenceResolution#getSubject <em>Subject</em>}</li> * </ul> * </p> * * @see net.certware.sacm.SACM.Evidence.EvidencePackage#getEvidenceResolution() * @model abstract="true" * @generated */ public interface EvidenceResolution extends EvidenceEvaluation { /** * <!-- 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>Subject</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Subject</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Subject</em>' containment reference. * @see #setSubject(EvidenceElement) * @see net.certware.sacm.SACM.Evidence.EvidencePackage#getEvidenceResolution_Subject() * @model containment="true" required="true" ordered="false" * @generated */ EvidenceElement getSubject(); /** * Sets the value of the '{@link net.certware.sacm.SACM.Evidence.EvidenceResolution#getSubject <em>Subject</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Subject</em>' containment reference. * @see #getSubject() * @generated */ void setSubject(EvidenceElement value); } // EvidenceResolution