org.eclipse.xtext.xbase.XMemberFeatureCall 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;
/**
*
* A representation of the model object 'XMember Feature Call'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.xtext.xbase.XMemberFeatureCall#getMemberCallTarget Member Call Target}
* - {@link org.eclipse.xtext.xbase.XMemberFeatureCall#getMemberCallArguments Member Call Arguments}
* - {@link org.eclipse.xtext.xbase.XMemberFeatureCall#isExplicitOperationCall Explicit Operation Call}
* - {@link org.eclipse.xtext.xbase.XMemberFeatureCall#isSpreading Spreading}
* - {@link org.eclipse.xtext.xbase.XMemberFeatureCall#isNullSafe Null Safe}
*
*
*
* @see org.eclipse.xtext.xbase.XbasePackage#getXMemberFeatureCall()
* @model
* @generated
*/
public interface XMemberFeatureCall extends XAbstractFeatureCall
{
/**
* Returns the value of the 'Member Call Target' containment reference.
*
*
* If the meaning of the 'Member Call Target' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Member Call Target' containment reference.
* @see #setMemberCallTarget(XExpression)
* @see org.eclipse.xtext.xbase.XbasePackage#getXMemberFeatureCall_MemberCallTarget()
* @model containment="true"
* @generated
*/
XExpression getMemberCallTarget();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XMemberFeatureCall#getMemberCallTarget Member Call Target}' containment reference.
*
*
* @param value the new value of the 'Member Call Target' containment reference.
* @see #getMemberCallTarget()
* @generated
*/
void setMemberCallTarget(XExpression value);
/**
* Returns the value of the 'Member Call Arguments' containment reference list.
* The list contents are of type {@link org.eclipse.xtext.xbase.XExpression}.
*
*
* If the meaning of the 'Member Call Arguments' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Member Call Arguments' containment reference list.
* @see org.eclipse.xtext.xbase.XbasePackage#getXMemberFeatureCall_MemberCallArguments()
* @model containment="true"
* @generated
*/
EList getMemberCallArguments();
/**
* Returns the value of the 'Explicit Operation Call' attribute.
*
*
* If the meaning of the 'Explicit Operation Call' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Explicit Operation Call' attribute.
* @see #setExplicitOperationCall(boolean)
* @see org.eclipse.xtext.xbase.XbasePackage#getXMemberFeatureCall_ExplicitOperationCall()
* @model
* @generated
*/
boolean isExplicitOperationCall();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XMemberFeatureCall#isExplicitOperationCall Explicit Operation Call}' attribute.
*
*
* @param value the new value of the 'Explicit Operation Call' attribute.
* @see #isExplicitOperationCall()
* @generated
*/
void setExplicitOperationCall(boolean value);
/**
* Returns the value of the 'Spreading' attribute.
*
*
* If the meaning of the 'Spreading' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Spreading' attribute.
* @see #setSpreading(boolean)
* @see org.eclipse.xtext.xbase.XbasePackage#getXMemberFeatureCall_Spreading()
* @model
* @generated
*/
boolean isSpreading();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XMemberFeatureCall#isSpreading Spreading}' attribute.
*
*
* @param value the new value of the 'Spreading' attribute.
* @see #isSpreading()
* @generated
*/
void setSpreading(boolean value);
/**
* Returns the value of the 'Null Safe' attribute.
*
*
* If the meaning of the 'Null Safe' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Null Safe' attribute.
* @see #setNullSafe(boolean)
* @see org.eclipse.xtext.xbase.XbasePackage#getXMemberFeatureCall_NullSafe()
* @model
* @generated
*/
boolean isNullSafe();
/**
* Sets the value of the '{@link org.eclipse.xtext.xbase.XMemberFeatureCall#isNullSafe Null Safe}' attribute.
*
*
* @param value the new value of the 'Null Safe' attribute.
* @see #isNullSafe()
* @generated
*/
void setNullSafe(boolean value);
} // XMemberFeatureCall
© 2015 - 2025 Weber Informatics LLC | Privacy Policy