/** * Copyright (c) 2010 National Aeronautics and Space Administration. All rights reserved. */ package net.certware.argument.gsz; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Diagram</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.argument.gsz.Diagram#getGoals <em>Goals</em>}</li> * <li>{@link net.certware.argument.gsz.Diagram#getVersion <em>Version</em>}</li> * </ul> * </p> * * @see net.certware.argument.gsz.GsnPackage#getDiagram() * @model annotation="gmf.diagram foo='gsn' model.extension='gsn' diagram.extension='gsnd'" * @generated */ public interface Diagram extends EObject { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright (c) 2010 National Aeronautics and Space Administration. All rights reserved."; //$NON-NLS-1$ /** * Returns the value of the '<em><b>Goals</b></em>' reference list. * The list contents are of type {@link net.certware.argument.gsz.Goal}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Goals</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>Goals</em>' reference list. * @see net.certware.argument.gsz.GsnPackage#getDiagram_Goals() * @model ordered="false" * @generated */ EList<Goal> getGoals(); /** * Returns the value of the '<em><b>Version</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Version</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Version</em>' attribute. * @see #setVersion(String) * @see net.certware.argument.gsz.GsnPackage#getDiagram_Version() * @model * @generated */ String getVersion(); /** * Sets the value of the '{@link net.certware.argument.gsz.Diagram#getVersion <em>Version</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Version</em>' attribute. * @see #getVersion() * @generated */ void setVersion(String value); } // Diagram