blob: 01eb07b9808a17b12b3587e1b853c5dbc6511089 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2015 THALES GLOBAL SERVICES and others.
* 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;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '
* <em><b>Layer</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Layer#getId
* <em>Id</em>}</li>
* <li>
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Layer#isActivated
* <em>Activated</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getLayer()
* @model
* @generated
*/
public interface Layer extends EObject {
/**
* Returns the value of the '<em><b>Id</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Id</em>' attribute isn't clear, there really
* should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Id</em>' attribute.
* @see #setId(String)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getLayer_Id()
* @model
* @generated
*/
String getId();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Layer#getId
* <em>Id</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Id</em>' attribute.
* @see #getId()
* @generated
*/
void setId(String value);
/**
* Returns the value of the '<em><b>Activated</b></em>' attribute. <!--
* begin-user-doc -->
* <p>
* If the meaning of the '<em>Activated</em>' attribute isn't clear, there
* really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Activated</em>' attribute.
* @see #setActivated(boolean)
* @see org.eclipse.sirius.tests.sample.migration.migrationmodeler.MigrationmodelerPackage#getLayer_Activated()
* @model
* @generated
*/
boolean isActivated();
/**
* Sets the value of the '
* {@link org.eclipse.sirius.tests.sample.migration.migrationmodeler.Layer#isActivated
* <em>Activated</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc
* -->
*
* @param value
* the new value of the '<em>Activated</em>' attribute.
* @see #isActivated()
* @generated
*/
void setActivated(boolean value);
} // Layer