/** * <copyright> * </copyright> * * $Id$ */ package org.dresdenocl.examples.pml; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Java Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.dresdenocl.examples.pml.JavaType#getFullyQualifiedName <em>Fully Qualified Name</em>}</li> * <li>{@link org.dresdenocl.examples.pml.JavaType#getImplements <em>Implements</em>}</li> * <li>{@link org.dresdenocl.examples.pml.JavaType#getOperations <em>Operations</em>}</li> * </ul> * </p> * * @see org.dresdenocl.examples.pml.PmlPackage#getJavaType() * @model * @generated */ public interface JavaType extends EObject { /** * Returns the value of the '<em><b>Fully Qualified Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Fully Qualified 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>Fully Qualified Name</em>' attribute. * @see #setFullyQualifiedName(String) * @see org.dresdenocl.examples.pml.PmlPackage#getJavaType_FullyQualifiedName() * @model * @generated */ String getFullyQualifiedName(); /** * Sets the value of the '{@link org.dresdenocl.examples.pml.JavaType#getFullyQualifiedName <em>Fully Qualified Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Fully Qualified Name</em>' attribute. * @see #getFullyQualifiedName() * @generated */ void setFullyQualifiedName(String value); /** * Returns the value of the '<em><b>Implements</b></em>' reference list. * The list contents are of type {@link org.dresdenocl.examples.pml.JavaType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Implements</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>Implements</em>' reference list. * @see org.dresdenocl.examples.pml.PmlPackage#getJavaType_Implements() * @model * @generated */ EList<JavaType> getImplements(); /** * Returns the value of the '<em><b>Operations</b></em>' containment reference list. * The list contents are of type {@link org.dresdenocl.examples.pml.Operation}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Operations</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>Operations</em>' containment reference list. * @see org.dresdenocl.examples.pml.PmlPackage#getJavaType_Operations() * @model containment="true" * @generated */ EList<Operation> getOperations(); } // JavaType