blob: 190304283b9d4f0c557011ac131b35eedce47d7b [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2005, 2010 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* SAP AG - initial API, implementation and documentation
*
* </copyright>
*/
package org.eclipse.graphiti.mm.pictograms;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Shape</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.graphiti.mm.pictograms.Shape#getContainer <em>Container</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.graphiti.mm.pictograms.PictogramsPackage#getShape()
* @model
* @generated
*/
public interface Shape extends AnchorContainer {
/**
* Returns the value of the '<em><b>Container</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.graphiti.mm.pictograms.ContainerShape#getChildren <em>Children</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Container</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Container</em>' container reference.
* @see #setContainer(ContainerShape)
* @see org.eclipse.graphiti.mm.pictograms.PictogramsPackage#getShape_Container()
* @see org.eclipse.graphiti.mm.pictograms.ContainerShape#getChildren
* @model opposite="children" transient="false" ordered="false"
* @generated
*/
ContainerShape getContainer();
/**
* Sets the value of the '{@link org.eclipse.graphiti.mm.pictograms.Shape#getContainer <em>Container</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Container</em>' container reference.
* @see #getContainer()
* @generated
*/
void setContainer(ContainerShape value);
} // Shape