Uses of Interface
org.eclipse.ocl.examples.codegen.cgmodel.CGBuiltInIterationCallExp

Packages that use CGBuiltInIterationCallExp
org.eclipse.ocl.examples.codegen.analyzer   
org.eclipse.ocl.examples.codegen.cgmodel   
org.eclipse.ocl.examples.codegen.cgmodel.impl   
org.eclipse.ocl.examples.codegen.cgmodel.util   
org.eclipse.ocl.examples.codegen.generator   
org.eclipse.ocl.examples.codegen.java   
org.eclipse.ocl.examples.codegen.java.iteration   
 

Uses of CGBuiltInIterationCallExp in org.eclipse.ocl.examples.codegen.analyzer
 

Methods in org.eclipse.ocl.examples.codegen.analyzer with parameters of type CGBuiltInIterationCallExp
 java.lang.Object BoxingAnalyzer.visitCGBuiltInIterationCallExp(CGBuiltInIterationCallExp cgElement)
           
 java.lang.String CG2StringVisitor.visitCGBuiltInIterationCallExp(CGBuiltInIterationCallExp cgExp)
           
 

Uses of CGBuiltInIterationCallExp in org.eclipse.ocl.examples.codegen.cgmodel
 

Methods in org.eclipse.ocl.examples.codegen.cgmodel that return CGBuiltInIterationCallExp
 CGBuiltInIterationCallExp CGModelFactory.createCGBuiltInIterationCallExp()
          Returns a new object of class 'CG Built In Iteration Call Exp'.
 

Uses of CGBuiltInIterationCallExp in org.eclipse.ocl.examples.codegen.cgmodel.impl
 

Classes in org.eclipse.ocl.examples.codegen.cgmodel.impl that implement CGBuiltInIterationCallExp
 class CGBuiltInIterationCallExpImpl
          An implementation of the model object 'CG While Exp'.
 

Methods in org.eclipse.ocl.examples.codegen.cgmodel.impl that return CGBuiltInIterationCallExp
 CGBuiltInIterationCallExp CGModelFactoryImpl.createCGBuiltInIterationCallExp()
           
 

Uses of CGBuiltInIterationCallExp in org.eclipse.ocl.examples.codegen.cgmodel.util
 

Methods in org.eclipse.ocl.examples.codegen.cgmodel.util with parameters of type CGBuiltInIterationCallExp
 T CGModelSwitch.caseCGBuiltInIterationCallExp(CGBuiltInIterationCallExp object)
          Returns the result of interpreting the object as an instance of 'CG Built In Iteration Call Exp'.
 R AbstractExtendingCGModelVisitor.visitCGBuiltInIterationCallExp(CGBuiltInIterationCallExp object)
           
 R AbstractNullCGModelVisitor.visitCGBuiltInIterationCallExp(CGBuiltInIterationCallExp object)
           
 R CGModelVisitor.visitCGBuiltInIterationCallExp(CGBuiltInIterationCallExp object)
           
 

Uses of CGBuiltInIterationCallExp in org.eclipse.ocl.examples.codegen.generator
 

Methods in org.eclipse.ocl.examples.codegen.generator with parameters of type CGBuiltInIterationCallExp
 CGTypeId IterationHelper.getAccumulatorTypeId(CodeGenAnalyzer analyzer, CGBuiltInIterationCallExp cgIterationCallExp)
           
 

Uses of CGBuiltInIterationCallExp in org.eclipse.ocl.examples.codegen.java
 

Methods in org.eclipse.ocl.examples.codegen.java with parameters of type CGBuiltInIterationCallExp
 void Iteration2Java.appendAccumulatorInit(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 boolean Iteration2Java.appendFinalValue(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
          Append the code to assign the final value to the result.
 void Iteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 java.lang.Object CG2JavaVisitor.visitCGBuiltInIterationCallExp(CGBuiltInIterationCallExp cgIterationCallExp)
           
 

Uses of CGBuiltInIterationCallExp in org.eclipse.ocl.examples.codegen.java.iteration
 

Methods in org.eclipse.ocl.examples.codegen.java.iteration with parameters of type CGBuiltInIterationCallExp
 void AbstractAccumulation2Java.appendAccumulatorInit(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void AbstractIteration2Java.appendAccumulatorInit(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void IsUniqueIteration2Java.appendAccumulatorInit(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void IterateIteration2Java.appendAccumulatorInit(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void OneIteration2Java.appendAccumulatorInit(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 boolean AbstractAccumulation2Java.appendFinalValue(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 boolean AnyIteration2Java.appendFinalValue(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 boolean ExistsIteration2Java.appendFinalValue(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 boolean ForAllIteration2Java.appendFinalValue(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 boolean IsUniqueIteration2Java.appendFinalValue(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void AnyIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void CollectIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void CollectNestedIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void ExistsIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void ForAllIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void IsUniqueIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void IterateIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void OneIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void RejectIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
 void SelectIteration2Java.appendUpdate(JavaStream js, CGBuiltInIterationCallExp cgIterationCallExp)
           
protected  CGIterator AbstractAccumulation2Java.getAccumulator(CGBuiltInIterationCallExp cgIterationCallExp)
           
 CGTypeId AbstractAccumulation2Java.getAccumulatorTypeId(CodeGenAnalyzer analyzer, CGBuiltInIterationCallExp cgIterationCallExp)
           
 CGTypeId AbstractIteration2Java.getAccumulatorTypeId(CodeGenAnalyzer analyzer, CGBuiltInIterationCallExp cgIterationCallExp)
           
 CGTypeId IsUniqueIteration2Java.getAccumulatorTypeId(CodeGenAnalyzer analyzer, CGBuiltInIterationCallExp cgIterationCallExp)
           
 CGTypeId OneIteration2Java.getAccumulatorTypeId(CodeGenAnalyzer analyzer, CGBuiltInIterationCallExp cgIterationCallExp)
           
protected  CGValuedElement AbstractIteration2Java.getBody(CGBuiltInIterationCallExp cgIterationCallExp)
           
protected  CGIterator AbstractIteration2Java.getIterator(CGBuiltInIterationCallExp cgIterationCallExp)