/** * * * * $Id$ */ package com.ibm.wala.ecore.java; import com.ibm.wala.ecore.common.EObjectWithContainerId; /** * * A representation of the model object 'EJava Class'. * * *

* The following features are supported: *

*

* * @see com.ibm.wala.ecore.java.JavaPackage#getEJavaClass() * @model * @generated */ public interface EJavaClass extends EObjectWithContainerId { /** * Returns the value of the 'Class Name' attribute. * *

* If the meaning of the 'Class Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Class Name' attribute. * @see #setClassName(String) * @see com.ibm.wala.ecore.java.JavaPackage#getEJavaClass_ClassName() * @model required="true" * @generated */ String getClassName(); /** * Sets the value of the '{@link com.ibm.wala.ecore.java.EJavaClass#getClassName Class Name}' attribute. * * * @param value the new value of the 'Class Name' attribute. * @see #getClassName() * @generated */ void setClassName(String value); /** * Returns the value of the 'Loader' attribute. * The literals are from the enumeration {@link com.ibm.wala.ecore.java.EClassLoaderName}. * *

* If the meaning of the 'Loader' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Loader' attribute. * @see com.ibm.wala.ecore.java.EClassLoaderName * @see #setLoader(EClassLoaderName) * @see com.ibm.wala.ecore.java.JavaPackage#getEJavaClass_Loader() * @model required="true" * @generated */ EClassLoaderName getLoader(); /** * Sets the value of the '{@link com.ibm.wala.ecore.java.EJavaClass#getLoader Loader}' attribute. * * * @param value the new value of the 'Loader' attribute. * @see com.ibm.wala.ecore.java.EClassLoaderName * @see #getLoader() * @generated */ void setLoader(EClassLoaderName value); } // EJavaClass