/** * * * * $Id$ */ package org.eclipse.papyrus.infra.core.sashwindows.di; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * A representation of the model object ' Panel Parent'. * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.infra.core.sashwindows.di.DiPackage#getPanelParent() * @model abstract="true" * @generated */ public interface PanelParent extends EObject { /** * Returns the value of the 'Children' containment reference * list. The list contents are of type {@link org.eclipse.papyrus.infra.core.sashwindows.di.AbstractPanel}. It is * bidirectional and its opposite is ' {@link org.eclipse.papyrus.infra.core.sashwindows.di.AbstractPanel#getParent * Parent}'. *

* If the meaning of the 'Children' containment reference list isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Children' containment reference list. * @see org.eclipse.papyrus.infra.core.sashwindows.di.DiPackage#getPanelParent_Children() * @see org.eclipse.papyrus.infra.core.sashwindows.di.AbstractPanel#getParent * @model opposite="parent" containment="true" lower="2" upper="2" * ordered="false" * @generated */ EList getChildren(); /** * * Replace the specified child by the new value. Don't need to be * implemented in TabFolder. Used to insert a new SashPanel. * * @model oldChildRequired="true" oldChildOrdered="false" * newChildRequired="true" newChildOrdered="false" * @generated */ void replaceChild(AbstractPanel oldChild, AbstractPanel newChild); } // PanelParent