All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.xtext.xbase.XClosure Maven / Gradle / Ivy

/**
 * Copyright (c) 2011 itemis AG (http://www.itemis.eu) 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
 */
package org.eclipse.xtext.xbase;

import org.eclipse.emf.common.util.EList;

import org.eclipse.xtext.common.types.JvmFormalParameter;

/**
 * 
 * A representation of the model object 'XClosure'.
 * 
 *
 * 
 * @since 2.7
 * @noextend This interface is not intended to be extended by clients.
 * @noimplement This interface is not intended to be implemented by clients.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.eclipse.xtext.xbase.XClosure#getDeclaredFormalParameters Declared Formal Parameters}
  • *
  • {@link org.eclipse.xtext.xbase.XClosure#getExpression Expression}
  • *
  • {@link org.eclipse.xtext.xbase.XClosure#isExplicitSyntax Explicit Syntax}
  • *
  • {@link org.eclipse.xtext.xbase.XClosure#getImplicitFormalParameters Implicit Formal Parameters}
  • *
* * @see org.eclipse.xtext.xbase.XbasePackage#getXClosure() * @model * @generated */ public interface XClosure extends XExpression { /** * Returns the value of the 'Declared Formal Parameters' containment reference list. * The list contents are of type {@link org.eclipse.xtext.common.types.JvmFormalParameter}. * *

* If the meaning of the 'Declared Formal Parameters' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Declared Formal Parameters' containment reference list. * @see org.eclipse.xtext.xbase.XbasePackage#getXClosure_DeclaredFormalParameters() * @model containment="true" * @generated */ EList getDeclaredFormalParameters(); /** * Returns the value of the 'Expression' containment reference. * *

* If the meaning of the 'Expression' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Expression' containment reference. * @see #setExpression(XExpression) * @see org.eclipse.xtext.xbase.XbasePackage#getXClosure_Expression() * @model containment="true" * @generated */ XExpression getExpression(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XClosure#getExpression Expression}' containment reference. * * * @param value the new value of the 'Expression' containment reference. * @see #getExpression() * @generated */ void setExpression(XExpression value); /** * Returns the value of the 'Explicit Syntax' attribute. * *

* If the meaning of the 'Explicit Syntax' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Explicit Syntax' attribute. * @see #setExplicitSyntax(boolean) * @see org.eclipse.xtext.xbase.XbasePackage#getXClosure_ExplicitSyntax() * @model * @generated */ boolean isExplicitSyntax(); /** * Sets the value of the '{@link org.eclipse.xtext.xbase.XClosure#isExplicitSyntax Explicit Syntax}' attribute. * * * @param value the new value of the 'Explicit Syntax' attribute. * @see #isExplicitSyntax() * @generated */ void setExplicitSyntax(boolean value); /** * Returns the value of the 'Implicit Formal Parameters' containment reference list. * The list contents are of type {@link org.eclipse.xtext.common.types.JvmFormalParameter}. * *

* If the meaning of the 'Implicit Formal Parameters' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Implicit Formal Parameters' containment reference list. * @see org.eclipse.xtext.xbase.XbasePackage#getXClosure_ImplicitFormalParameters() * @model containment="true" transient="true" derived="true" * @generated */ EList getImplicitFormalParameters(); /** * * * @model kind="operation" * @generated */ EList getFormalParameters(); } // XClosure




© 2015 - 2025 Weber Informatics LLC | Privacy Policy