blob: 4e62f6a6db1eed83e0da66709fe38e79e4454cd9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.ecl.core;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Block</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.ecl.core.Block#getCommands <em>Commands</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.ecl.core.CorePackage#getBlock()
* @model abstract="true"
* @generated
*/
public interface Block extends Command {
/**
* Returns the value of the '<em><b>Commands</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.rcptt.ecl.core.Command}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Commands</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>Commands</em>' containment reference list.
* @see org.eclipse.rcptt.ecl.core.CorePackage#getBlock_Commands()
* @model containment="true" required="true"
* @generated
*/
EList<Command> getCommands();
} // Block