org.eclipse.ocl.examples.codegen.cgmodel
Interface CGCallExp

All Superinterfaces:
CGElement, CGNamedElement, CGTypedElement, CGValuedElement, org.eclipse.emf.ecore.EObject, Nameable, org.eclipse.emf.common.notify.Notifier
All Known Subinterfaces:
CGAssertNonNullExp, CGASTCallExp, CGBoxExp, CGBuiltInIterationCallExp, CGCastExp, CGCatchExp, CGEcoreOperationCallExp, CGEcoreOppositePropertyCallExp, CGEcorePropertyCallExp, CGExecutorOperationCallExp, CGExecutorOppositePropertyCallExp, CGExecutorPropertyCallExp, CGGuardExp, CGIsEqualExp, CGIsInvalidExp, CGIsUndefinedExp, CGIterationCallExp, CGLibraryIterateCallExp, CGLibraryIterationCallExp, CGLibraryOperationCallExp, CGLibraryPropertyCallExp, CGNavigationCallExp, CGOperationCallExp, CGOppositePropertyCallExp, CGPropertyCallExp, CGThrowExp, CGTuplePartCallExp, CGUnboxExp
All Known Implementing Classes:
CGAssertNonNullExpImpl, CGASTCallExpImpl, CGBoxExpImpl, CGBuiltInIterationCallExpImpl, CGCallExpImpl, CGCastExpImpl, CGCatchExpImpl, CGEcoreOperationCallExpImpl, CGEcoreOppositePropertyCallExpImpl, CGEcorePropertyCallExpImpl, CGExecutorOperationCallExpImpl, CGExecutorOppositePropertyCallExpImpl, CGExecutorPropertyCallExpImpl, CGGuardExpImpl, CGIsEqualExpImpl, CGIsInvalidExpImpl, CGIsUndefinedExpImpl, CGIterationCallExpImpl, CGLibraryIterateCallExpImpl, CGLibraryIterationCallExpImpl, CGLibraryOperationCallExpImpl, CGLibraryPropertyCallExpImpl, CGNavigationCallExpImpl, CGOperationCallExpImpl, CGOppositePropertyCallExpImpl, CGPropertyCallExpImpl, CGThrowExpImpl, CGTuplePartCallExpImpl, CGUnboxExpImpl

public interface CGCallExp
extends CGValuedElement

A representation of the model object 'CG Call Exp'.

The following features are supported:

See Also:
CGModelPackage.getCGCallExp()
Generated

Method Summary
 CGValuedElement getSource()
          Returns the value of the 'Source' containment reference.
 boolean isInvalidating()
          Returns the value of the 'Invalidating' attribute.
 boolean isValidating()
          Returns the value of the 'Validating' attribute.
 void setInvalidating(boolean value)
          Sets the value of the 'Invalidating' attribute.
 void setSource(CGValuedElement value)
          Sets the value of the 'Source' containment reference.
 void setValidating(boolean value)
          Sets the value of the 'Validating' attribute.
 
Methods inherited from interface org.eclipse.ocl.examples.codegen.cgmodel.CGValuedElement
getDependsOn, getInvalidValue, getNamedValue, getOwns, getReferredValue, getSourceValue, getThisValue, getTypedValue, getValueName, isAssertedNonNull, isBoxed, isCaught, isCommonable, isConstant, isEquivalentTo, isEquivalentToInternal, isFalse, isGlobal, isInlined, isInvalid, isNonInvalid, isNonNull, isNull, isSettable, isTrue, isUnboxed, isUncommonable, setCaught, setValueName
 
Methods inherited from interface org.eclipse.ocl.examples.codegen.cgmodel.CGTypedElement
getASTypeId, getTypeId, isRequired, setRequired, setTypeId
 
Methods inherited from interface org.eclipse.ocl.examples.codegen.cgmodel.CGNamedElement
getAst, getName, setAst, setName
 
Methods inherited from interface org.eclipse.ocl.examples.codegen.cgmodel.CGElement
accept, getChildren, getParent, getPlace, isContext, rewriteAs
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 

Method Detail

isInvalidating

boolean isInvalidating()
Returns the value of the 'Invalidating' attribute. The default value is "false".

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

Whether this call expression may return an invalid result for non-invalid inputs.

Returns:
the value of the 'Invalidating' attribute.
See Also:
setInvalidating(boolean), CGModelPackage.getCGCallExp_Invalidating()
Generated

setInvalidating

void setInvalidating(boolean value)
Sets the value of the 'Invalidating' attribute.

Parameters:
value - the new value of the 'Invalidating' attribute.
See Also:
isInvalidating()
Generated

isValidating

boolean isValidating()
Returns the value of the 'Validating' attribute. The default value is "false".

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

Whether this call expression may return a non-invalid result for invalid inputs.

Returns:
the value of the 'Validating' attribute.
See Also:
setValidating(boolean), CGModelPackage.getCGCallExp_Validating()
Generated

setValidating

void setValidating(boolean value)
Sets the value of the 'Validating' attribute.

Parameters:
value - the new value of the 'Validating' attribute.
See Also:
isValidating()
Generated

getSource

CGValuedElement getSource()
Returns the value of the 'Source' containment reference.

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

The source expression for the call.

Returns:
the value of the 'Source' containment reference.
See Also:
setSource(CGValuedElement), CGModelPackage.getCGCallExp_Source()
Generated

setSource

void setSource(CGValuedElement value)
Sets the value of the 'Source' containment reference.

Parameters:
value - the new value of the 'Source' containment reference.
See Also:
getSource()
Generated