/******************************************************************************* * 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.definitions; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Command</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.dltk.tcl.definitions.Command#getName <em>Name</em>}</li> * <li>{@link org.eclipse.dltk.tcl.definitions.Command#getArguments <em>Arguments</em>}</li> * <li>{@link org.eclipse.dltk.tcl.definitions.Command#getVersion <em>Version</em>}</li> * <li>{@link org.eclipse.dltk.tcl.definitions.Command#getScope <em>Scope</em>}</li> * <li>{@link org.eclipse.dltk.tcl.definitions.Command#getDeprecated <em>Deprecated</em>}</li> * </ul> * </p> * * @see org.eclipse.dltk.tcl.definitions.DefinitionsPackage#getCommand() * @model * @generated */ public interface Command extends Scope { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.eclipse.dltk.tcl.definitions.DefinitionsPackage#getCommand_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.dltk.tcl.definitions.Command#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Arguments</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.dltk.tcl.definitions.Argument}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Arguments</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>Arguments</em>' containment reference list. * @see org.eclipse.dltk.tcl.definitions.DefinitionsPackage#getCommand_Arguments() * @model containment="true" * @generated */ EList<Argument> getArguments(); /** * Returns the value of the '<em><b>Version</b></em>' attribute. * The default value is <code>"(-;-)"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Version</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Version</em>' attribute. * @see #setVersion(String) * @see org.eclipse.dltk.tcl.definitions.DefinitionsPackage#getCommand_Version() * @model default="(-;-)" * @generated */ String getVersion(); /** * Sets the value of the '{@link org.eclipse.dltk.tcl.definitions.Command#getVersion <em>Version</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Version</em>' attribute. * @see #getVersion() * @generated */ void setVersion(String value); /** * Returns the value of the '<em><b>Scope</b></em>' reference list. * The list contents are of type {@link org.eclipse.dltk.tcl.definitions.Command}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Scope</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>Scope</em>' reference list. * @see org.eclipse.dltk.tcl.definitions.DefinitionsPackage#getCommand_Scope() * @model * @generated */ EList<Command> getScope(); /** * Returns the value of the '<em><b>Deprecated</b></em>' attribute. * The default value is <code>""</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Deprecated</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Deprecated</em>' attribute. * @see #setDeprecated(String) * @see org.eclipse.dltk.tcl.definitions.DefinitionsPackage#getCommand_Deprecated() * @model default="" * @generated */ String getDeprecated(); /** * Sets the value of the '{@link org.eclipse.dltk.tcl.definitions.Command#getDeprecated <em>Deprecated</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Deprecated</em>' attribute. * @see #getDeprecated() * @generated */ void setDeprecated(String value); } // Command