blob: e54a5108cb0754bc1c41176b43ab6131ad82f565 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2005, 2019 SAP SE
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* SAP SE - initial API, implementation and documentation
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.graphiti.mm.pictograms;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Container Shape</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.graphiti.mm.pictograms.ContainerShape#getChildren <em>Children</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.graphiti.mm.pictograms.PictogramsPackage#getContainerShape()
* @model
* @generated
*/
public interface ContainerShape extends Shape {
/**
* Returns the value of the '<em><b>Children</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.graphiti.mm.pictograms.Shape}.
* It is bidirectional and its opposite is '{@link org.eclipse.graphiti.mm.pictograms.Shape#getContainer <em>Container</em>}'.
* <!-- 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.graphiti.mm.pictograms.PictogramsPackage#getContainerShape_Children()
* @see org.eclipse.graphiti.mm.pictograms.Shape#getContainer
* @model opposite="container" containment="true" resolveProxies="true"
* @generated
*/
EList<Shape> getChildren();
} // ContainerShape