blob: 1ac835f1e16dc1bf616396cd1774904306c3326e [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: Hook.java,v 1.1 2008-09-14 16:47:43 estepper Exp $
*/
package org.eclipse.emf.cdo.tests.legacy;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Hook</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.emf.cdo.tests.legacy.Hook#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.emf.cdo.tests.legacy.Hook#getChildren <em>Children</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.emf.cdo.tests.legacy.LegacyPackage#getHook()
* @model
* @generated
*/
public interface Hook extends EObject {
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.emf.cdo.tests.legacy.LegacyPackage#getHook_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.emf.cdo.tests.legacy.Hook#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>Children</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.emf.cdo.tests.legacy.Hook}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Children</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>Children</em>' containment reference list.
* @see org.eclipse.emf.cdo.tests.legacy.LegacyPackage#getHook_Children()
* @model containment="true"
* @generated
*/
EList<Hook> getChildren();
} // Hook