/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.gmf.codegen.gmfgen; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Gen Child Container</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Base class for all ChildNode containers * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.codegen.gmfgen.GenChildContainer#getChildNodes <em>Child Nodes</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenChildContainer() * @model abstract="true" * @generated */ public interface GenChildContainer extends GenContainerBase { /** * Returns the value of the '<em><b>Child Nodes</b></em>' reference list. * The list contents are of type {@link org.eclipse.gmf.codegen.gmfgen.GenChildNode}. * It is bidirectional and its opposite is '{@link org.eclipse.gmf.codegen.gmfgen.GenChildNode#getContainers <em>Containers</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Child Nodes</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>Child Nodes</em>' reference list. * @see org.eclipse.gmf.codegen.gmfgen.GMFGenPackage#getGenChildContainer_ChildNodes() * @see org.eclipse.gmf.codegen.gmfgen.GenChildNode#getContainers * @model opposite="containers" * @generated */ EList<GenChildNode> getChildNodes(); } // GenChildContainer