70 lines
1.9 KiB
Java
70 lines
1.9 KiB
Java
/**
|
|
*/
|
|
package fr.tpt.mem4csd.loss;
|
|
|
|
import org.eclipse.emf.ecore.EObject;
|
|
|
|
/**
|
|
* <!-- begin-user-doc -->
|
|
* A representation of the model object '<em><b>Named Object</b></em>'.
|
|
* <!-- end-user-doc -->
|
|
*
|
|
* <p>
|
|
* The following features are supported:
|
|
* </p>
|
|
* <ul>
|
|
* <li>{@link fr.tpt.mem4csd.loss.NamedObject#getName <em>Name</em>}</li>
|
|
* <li>{@link fr.tpt.mem4csd.loss.NamedObject#getClassName <em>Class Name</em>}</li>
|
|
* </ul>
|
|
*
|
|
* @see fr.tpt.mem4csd.loss.LossPackage#getNamedObject()
|
|
* @model abstract="true"
|
|
* @generated
|
|
*/
|
|
public interface NamedObject extends EObject {
|
|
/**
|
|
* Returns the value of the '<em><b>Name</b></em>' attribute.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Name</em>' attribute.
|
|
* @see #setName(String)
|
|
* @see fr.tpt.mem4csd.loss.LossPackage#getNamedObject_Name()
|
|
* @model
|
|
* @generated
|
|
*/
|
|
String getName();
|
|
|
|
/**
|
|
* Sets the value of the '{@link fr.tpt.mem4csd.loss.NamedObject#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>Class Name</b></em>' attribute.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Class Name</em>' attribute.
|
|
* @see #setClassName(String)
|
|
* @see fr.tpt.mem4csd.loss.LossPackage#getNamedObject_ClassName()
|
|
* @model required="true"
|
|
* @generated
|
|
*/
|
|
String getClassName();
|
|
|
|
/**
|
|
* Sets the value of the '{@link fr.tpt.mem4csd.loss.NamedObject#getClassName <em>Class Name</em>}' attribute.
|
|
* <!-- begin-user-doc -->
|
|
* <!-- end-user-doc -->
|
|
* @param value the new value of the '<em>Class Name</em>' attribute.
|
|
* @see #getClassName()
|
|
* @generated
|
|
*/
|
|
void setClassName(String value);
|
|
|
|
} // NamedObject
|