/******************************************************************************* * 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>Group</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.dltk.tcl.definitions.Group#getConstant <em>Constant</em>}</li> * <li>{@link org.eclipse.dltk.tcl.definitions.Group#getArguments <em>Arguments</em>}</li> * </ul> * </p> * * @see org.eclipse.dltk.tcl.definitions.DefinitionsPackage#getGroup() * @model * @generated */ public interface Group extends Argument { /** * Returns the value of the '<em><b>Constant</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Constant</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Constant</em>' attribute. * @see #setConstant(String) * @see org.eclipse.dltk.tcl.definitions.DefinitionsPackage#getGroup_Constant() * @model * @generated */ String getConstant(); /** * Sets the value of the '{@link org.eclipse.dltk.tcl.definitions.Group#getConstant <em>Constant</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Constant</em>' attribute. * @see #getConstant() * @generated */ void setConstant(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#getGroup_Arguments() * @model containment="true" * @generated */ EList<Argument> getArguments(); } // Group