/**
*/
package fr.tpt.mem4csd.loss;
import org.eclipse.emf.ecore.EObject;
/**
*
* A representation of the model object 'Named Object'.
*
*
*
* The following features are supported:
*
*
* - {@link fr.tpt.mem4csd.loss.NamedObject#getName Name}
* - {@link fr.tpt.mem4csd.loss.NamedObject#getClassName Class Name}
*
*
* @see fr.tpt.mem4csd.loss.LossPackage#getNamedObject()
* @model abstract="true"
* @generated
*/
public interface NamedObject extends EObject {
/**
* Returns the value of the 'Name' attribute.
*
*
* @return the value of the 'Name' 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 Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Class Name' attribute.
*
*
* @return the value of the 'Class Name' 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 Class Name}' attribute.
*
*
* @param value the new value of the 'Class Name' attribute.
* @see #getClassName()
* @generated
*/
void setClassName(String value);
} // NamedObject