blob: 0d8edd943abde0ddb49ed983db20e09cfbe109b6 [file] [log] [blame]
/**
* Copyright (c) 2011-2018 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. 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:
* EclipseSource Munich - initial API and implementation
*/
package org.eclipse.emfforms.coffee.model.coffee;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Component</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.emfforms.coffee.model.coffee.Component#getChildren <em>Children</em>}</li>
* <li>{@link org.eclipse.emfforms.coffee.model.coffee.Component#getParent <em>Parent</em>}</li>
* <li>{@link org.eclipse.emfforms.coffee.model.coffee.Component#getActivities <em>Activities</em>}</li>
* </ul>
*
* @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getComponent()
* @model abstract="true"
* @generated
*/
public interface Component extends EObject {
/**
* Returns the value of the '<em><b>Children</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.emfforms.coffee.model.coffee.Component}.
* It is bidirectional and its opposite is '{@link org.eclipse.emfforms.coffee.model.coffee.Component#getParent
* <em>Parent</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.emfforms.coffee.model.coffee.CoffeePackage#getComponent_Children()
* @see org.eclipse.emfforms.coffee.model.coffee.Component#getParent
* @model opposite="parent" containment="true"
* @generated
*/
EList<Component> getChildren();
/**
* Returns the value of the '<em><b>Parent</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.emfforms.coffee.model.coffee.Component#getChildren
* <em>Children</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parent</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>Parent</em>' container reference.
* @see #setParent(Component)
* @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getComponent_Parent()
* @see org.eclipse.emfforms.coffee.model.coffee.Component#getChildren
* @model opposite="children" transient="false"
* @generated
*/
Component getParent();
/**
* Sets the value of the '{@link org.eclipse.emfforms.coffee.model.coffee.Component#getParent <em>Parent</em>}'
* container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value the new value of the '<em>Parent</em>' container reference.
* @see #getParent()
* @generated
*/
void setParent(Component value);
/**
* Returns the value of the '<em><b>Activities</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.emfforms.coffee.model.coffee.Activity}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Activities</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>Activities</em>' containment reference list.
* @see org.eclipse.emfforms.coffee.model.coffee.CoffeePackage#getComponent_Activities()
* @model containment="true"
* @generated
*/
EList<Activity> getActivities();
} // Component