/******************************************************************************* * Copyright (c) 2008 xored software, Inc. * * 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: * xored software, Inc. - initial API and Implementation (Andrei Sobolev) *******************************************************************************/ package org.eclipse.dltk.tcl.ast; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Substitution</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.dltk.tcl.ast.Substitution#getCommands <em>Commands</em>}</li> * </ul> * </p> * * @see org.eclipse.dltk.tcl.ast.AstPackage#getSubstitution() * @model * @generated */ public interface Substitution extends TclArgument, ISubstitution { /** * Returns the value of the '<em><b>Commands</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.dltk.tcl.ast.TclCommand}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Commands</em>' 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.dltk.tcl.ast.AstPackage#getSubstitution_Commands() * @model containment="true" * @generated */ EList<TclCommand> getCommands(); } // Substitution