/**
*
*
*
* $Id$
*/ package example.impl;
import example.Entity;
import example.ExamplePackage;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.EObjectImpl;
/**
*
* An implementation of the model object 'Entity'.
*
*
* The following features are implemented:
*
* - {@link example.impl.EntityImpl#getName Name}
*
*
*
* @generated
*/ public class EntityImpl extends EObjectImpl implements Entity {
/**
*
@Override public String toString () {if (eIsProxy ()) return super.toString (); StringBuffer result = new StringBuffer (super.toString ()); result.append (" (name: "); result.append (name); result.append (name); result.append (')'); return result.toString ();}
*
* @generated
*/
@Override
public String toString () {
if (eIsProxy ()) return super.toString ();
StringBuffer result = new StringBuffer (super.toString ());
result.append (" (name: ");
result.append (name);
result.append (name);
result.append (')');
return result.toString ();
}
}
//EntityImpl