/** * 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.argument.cae; import net.certware.argument.arm.ReasoningElement; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Argument</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.argument.cae.Argument#getJustification <em>Justification</em>}</li> * <li>{@link net.certware.argument.cae.Argument#getEvidence <em>Evidence</em>}</li> * <li>{@link net.certware.argument.cae.Argument#getClaims <em>Claims</em>}</li> * </ul> * </p> * * @see net.certware.argument.cae.CaePackage#getArgument() * @model * @generated */ public interface Argument extends ReasoningElement { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright (c) 2010-2011 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>Justification</b></em>' containment reference list. * The list contents are of type {@link net.certware.argument.cae.Justification}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Justification</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>Justification</em>' containment reference list. * @see net.certware.argument.cae.CaePackage#getArgument_Justification() * @model containment="true" * @generated */ EList<Justification> getJustification(); /** * Returns the value of the '<em><b>Evidence</b></em>' containment reference list. * The list contents are of type {@link net.certware.argument.cae.Evidence}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Evidence</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>Evidence</em>' containment reference list. * @see net.certware.argument.cae.CaePackage#getArgument_Evidence() * @model containment="true" * @generated */ EList<Evidence> getEvidence(); /** * Returns the value of the '<em><b>Claims</b></em>' containment reference list. * The list contents are of type {@link net.certware.argument.cae.Claim}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Claims</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>Claims</em>' containment reference list. * @see net.certware.argument.cae.CaePackage#getArgument_Claims() * @model containment="true" * @generated */ EList<Claim> getClaims(); } // Argument