blob: 5ea44bc67fef0bdd9aa476f2b66bfe8bec629c02 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007-2013 THALES GLOBAL SERVICES.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.tests.sample.migration.migrationmodeler;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Container Representation</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.ContainerRepresentation#getOwnedStyle
* <em>Owned Style</em>}</li>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.ContainerRepresentation#isAutoSized
* <em>Auto Sized</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getContainerRepresentation()
* @model
* @generated
*/
public interface ContainerRepresentation extends AbstractRepresentation {
/**
* Returns the value of the '<em><b>Owned Style</b></em>' containment
* reference. <!-- begin-user-doc --> <!-- end-user-doc --> <!--
* begin-model-doc --> The style of the container. <!-- end-model-doc -->
*
* @return the value of the '<em>Owned Style</em>' containment reference.
* @see #setOwnedStyle(ContainerStyle)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getContainerRepresentation_OwnedStyle()
* @model containment="true"
* @generated
*/
ContainerStyle getOwnedStyle();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.ContainerRepresentation#getOwnedStyle
* <em>Owned Style</em>}' containment reference. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Owned Style</em>' containment
* reference.
* @see #getOwnedStyle()
* @generated
*/
void setOwnedStyle(ContainerStyle value);
/**
* Returns the value of the '<em><b>Auto Sized</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Auto Sized</em>' attribute isn't clear, there
* really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Auto Sized</em>' attribute.
* @see #setAutoSized(boolean)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getContainerRepresentation_AutoSized()
* @model
* @generated
*/
boolean isAutoSized();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.ContainerRepresentation#isAutoSized
* <em>Auto Sized</em>}' attribute. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @param value
* the new value of the '<em>Auto Sized</em>' attribute.
* @see #isAutoSized()
* @generated
*/
void setAutoSized(boolean value);
} // ContainerRepresentation