/** */ package org.example.smalljava.smallJava; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>SJ Program</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.example.smalljava.smallJava.SJProgram#getName <em>Name</em>}</li> * <li>{@link org.example.smalljava.smallJava.SJProgram#getImports <em>Imports</em>}</li> * <li>{@link org.example.smalljava.smallJava.SJProgram#getClasses <em>Classes</em>}</li> * </ul> * </p> * * @see org.example.smalljava.smallJava.SmallJavaPackage#getSJProgram() * @model * @generated */ public interface SJProgram extends EObject { /** * 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 org.example.smalljava.smallJava.SmallJavaPackage#getSJProgram_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.example.smalljava.smallJava.SJProgram#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>Imports</b></em>' containment reference list. * The list contents are of type {@link org.example.smalljava.smallJava.SJImport}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Imports</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>Imports</em>' containment reference list. * @see org.example.smalljava.smallJava.SmallJavaPackage#getSJProgram_Imports() * @model containment="true" * @generated */ EList<SJImport> getImports(); /** * Returns the value of the '<em><b>Classes</b></em>' containment reference list. * The list contents are of type {@link org.example.smalljava.smallJava.SJClass}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Classes</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>Classes</em>' containment reference list. * @see org.example.smalljava.smallJava.SmallJavaPackage#getSJProgram_Classes() * @model containment="true" * @generated */ EList<SJClass> getClasses(); } // SJProgram