/* * Copyright (c) 2013, 2016 Eike Stepper (Berlin, Germany) and others. * 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: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.expressions; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Invocation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.emf.cdo.expressions.Invocation#getArguments <em>Arguments</em>}</li> * <li>{@link org.eclipse.emf.cdo.expressions.Invocation#getName <em>Name</em>}</li> * </ul> * * @see org.eclipse.emf.cdo.expressions.ExpressionsPackage#getInvocation() * @model abstract="true" * @generated */ public interface Invocation extends Expression { /** * Returns the value of the '<em><b>Arguments</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.emf.cdo.expressions.Expression}. * <!-- 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.emf.cdo.expressions.ExpressionsPackage#getInvocation_Arguments() * @model containment="true" * @generated */ EList<Expression> getArguments(); /** * Returns the value of the '<em><b>Name</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' containment reference. * @see #setName(Expression) * @see org.eclipse.emf.cdo.expressions.ExpressionsPackage#getInvocation_Name() * @model containment="true" required="true" * @generated */ Expression getName(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.expressions.Invocation#getName <em>Name</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' containment reference. * @see #getName() * @generated */ void setName(Expression value); } // Invocation