/** * CertWare Project * Copyright (c) 2010 National Aeronautics and Space Administration. All rights reserved. */ package net.certware.verification.checklist; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Category</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.verification.checklist.Category#getName <em>Name</em>}</li> * <li>{@link net.certware.verification.checklist.Category#getItems <em>Items</em>}</li> * <li>{@link net.certware.verification.checklist.Category#getComment <em>Comment</em>}</li> * </ul> * </p> * * @see net.certware.verification.checklist.ChecklistPackage#getCategory() * @model * @generated */ public interface Category extends EObject { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright (c) 2010 National Aeronautics and Space Administration"; //$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.verification.checklist.ChecklistPackage#getCategory_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link net.certware.verification.checklist.Category#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>Items</b></em>' containment reference list. * The list contents are of type {@link net.certware.verification.checklist.Item}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Items</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>Items</em>' containment reference list. * @see net.certware.verification.checklist.ChecklistPackage#getCategory_Items() * @model containment="true" required="true" * @generated */ EList<Item> getItems(); /** * Returns the value of the '<em><b>Comment</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Comment</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Comment</em>' attribute. * @see #setComment(String) * @see net.certware.verification.checklist.ChecklistPackage#getCategory_Comment() * @model * @generated */ String getComment(); /** * Sets the value of the '{@link net.certware.verification.checklist.Category#getComment <em>Comment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Comment</em>' attribute. * @see #getComment() * @generated */ void setComment(String value); } // Category