/** * 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. (generated models) */ package net.certware.evidence.evidence; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Group</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.evidence.EvidenceGroup#getName <em>Name</em>}</li> * <li>{@link net.certware.evidence.evidence.EvidenceGroup#getElement <em>Element</em>}</li> * </ul> * </p> * * @see net.certware.evidence.evidence.EvidencePackage#getEvidenceGroup() * @model * @generated */ public interface EvidenceGroup extends EvidenceItem { /** * 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.evidence.evidence.EvidencePackage#getEvidenceGroup_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link net.certware.evidence.evidence.EvidenceGroup#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>Element</b></em>' reference list. * The list contents are of type {@link net.certware.evidence.evidence.EvidenceElement}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Element</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Element</em>' reference list. * @see net.certware.evidence.evidence.EvidencePackage#getEvidenceGroup_Element() * @model * @generated */ EList<EvidenceElement> getElement(); } // EvidenceGroup