Uses of Interface
org.eclipse.ocl.examples.domain.library.LibraryBinaryOperation

Packages that use LibraryBinaryOperation
org.eclipse.ocl.examples.domain.library   
org.eclipse.ocl.examples.library.classifier   
org.eclipse.ocl.examples.library.collection   
org.eclipse.ocl.examples.library.executor   
org.eclipse.ocl.examples.library.integer   
org.eclipse.ocl.examples.library.iterator   
org.eclipse.ocl.examples.library.logical   
org.eclipse.ocl.examples.library.numeric   
org.eclipse.ocl.examples.library.oclany   
org.eclipse.ocl.examples.library.oclvoid   
org.eclipse.ocl.examples.library.real   
org.eclipse.ocl.examples.library.string   
org.eclipse.ocl.examples.pivot.library   
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.domain.library
 

Subinterfaces of LibraryBinaryOperation in org.eclipse.ocl.examples.domain.library
 interface LibrarySimpleBinaryOperation
          LibrarySimpleBinaryOperation extends the invocation API of a binary operation to support using just
arguments.
 interface LibraryUntypedBinaryOperation
          LibraryUntypedBinaryOperation extends the invocation API of a binary operation to support using just
an evaluator and arguments.
 

Classes in org.eclipse.ocl.examples.domain.library that implement LibraryBinaryOperation
 class AbstractBinaryOperation
          AbstractBinaryOperation defines the default implementation of a binary operation redirecting the call-expression invocation to the return type-id form.
 class AbstractPolyOperation
          AbstractPolyOperation supports arguments with a variety of argument lengths operations.
 class AbstractSimpleBinaryOperation
          AbstractSimpleBinaryOperation defines the default implementation of a binary operation redirecting the invocation to the argument-only form.
 class AbstractUntypedBinaryOperation
          AbstractUntypedBinaryOperation defines the default implementation of a binary operation redirecting the type-id invocation to the type-id-less form.
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.classifier
 

Classes in org.eclipse.ocl.examples.library.classifier that implement LibraryBinaryOperation
 class OclTypeConformsToOperation
          OclTypeConformsToOperation realises the OclType::conformsTo(OclType) library operation.
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.collection
 

Classes in org.eclipse.ocl.examples.library.collection that implement LibraryBinaryOperation
 class CollectionCountOperation
          CollectionCountOperation realises the Collection::count() library operation.
 class CollectionExcludesAllOperation
          CollectionExcludesAllOperation realises the Collection::excludesAll() library operation.
 class CollectionExcludesOperation
          CollectionExcludesOperation realises the Collection::excludes() library operation.
 class CollectionExcludingAllOperation
          CollectionExcludingAllOperation realises the Collection::excludingAll() library operation.
 class CollectionExcludingOperation
          CollectionExcludingOperation realises the Collection::excluding() library operation.
 class CollectionIncludesAllOperation
          CollectionIncludesAllOperation realises the Collection::includesAll() library operation.
 class CollectionIncludesOperation
          CollectionIncludesOperation realises the Collection::includes() library operation.
 class CollectionIncludingAllOperation
          CollectionIncludingAllOperation realises the Collection::includingAll() library operation.
 class CollectionIncludingOperation
          CollectionIncludingOperation realises the Collection::including() library operation.
 class CollectionIntersectionOperation
          CollectionIntersectionOperation realises the Collection::intersection() library operation.
 class CollectionProductOperation
          CollectionProductOperation realises the Collection::product() library operation.
 class CollectionSelectByKindOperation
          CollectionSelectByKindOperation realises the Collection::selectByType() library operation.
 class CollectionSelectByTypeOperation
          CollectionSelectByTypeOperation realises the Collection::selectByType() library operation.
 class CollectionUnionOperation
          CollectionUnionOperation realises the Collection::union() library operation.
 class OrderedCollectionAppendAllOperation
          OrderedCollectionPrependOperation realises the OrderedCollection::appendAll() library operation.
 class OrderedCollectionAppendOperation
          OrderedCollectionAppendOperation realises the OrderedCollection::append() library operation.
 class OrderedCollectionAtOperation
          OrderedCollectionAtOperation realises the OrderedCollection::at() library operation.
 class OrderedCollectionIndexOfOperation
          OrderedCollectionIndexOfOperation realises the OrderedCollection::indexOf() library operation.
 class OrderedCollectionPrependAllOperation
          OrderedCollectionPrependOperation realises the OrderedCollection::prependAll() library operation.
 class OrderedCollectionPrependOperation
          OrderedCollectionPrependOperation realises the OrderedCollection::prepend() library operation.
 class SetMinusOperation
          SetMinusOperation realises the Set::-() library operation.
 class SetSymmetricDifferenceOperation
          SetSymmetricDifferenceOperation realises the Set::symmetricDifference() library operation.
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.executor
 

Fields in org.eclipse.ocl.examples.library.executor declared as LibraryBinaryOperation
protected  LibraryBinaryOperation ExecutorSingleIterationManager.body
           
 

Constructors in org.eclipse.ocl.examples.library.executor with parameters of type LibraryBinaryOperation
ExecutorSingleIterationManager(DomainEvaluator evaluator, TypeId returnTypeId, LibraryBinaryOperation body, CollectionValue value, java.lang.Object accumulatorValue)
           
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.integer
 

Classes in org.eclipse.ocl.examples.library.integer that implement LibraryBinaryOperation
 class IntegerCompareToOperation
          Deprecated. 
 class IntegerMinusOperation
          Deprecated. 
 class IntegerPlusOperation
          Deprecated. 
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.iterator
 

Constructors in org.eclipse.ocl.examples.library.iterator with parameters of type LibraryBinaryOperation
SortedByIteration.SortingValue(DomainEvaluator evaluator, CollectionTypeId returnTypeId, LibraryBinaryOperation implementation)
           
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.logical
 

Classes in org.eclipse.ocl.examples.library.logical that implement LibraryBinaryOperation
 class BooleanAndOperation
          AndOperation realises the and() library operation.
 class BooleanImpliesOperation
          ImpliesOperation realises the implies() library operation.
 class BooleanOrOperation
          OrOperation realises the or() library operation.
 class BooleanXorOperation
          BooleanXorOperation realises the Boolean::xor() library operation.
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.numeric
 

Classes in org.eclipse.ocl.examples.library.numeric that implement LibraryBinaryOperation
 class NumericCompareToOperation
          NumericCompareToOperation realises the numeric compareTo() library operation.
 class NumericDivideOperation
          NumericDivideOperation realises the /() library operation.
 class NumericDivOperation
          NumericDivOperation realises the div() library operation.
 class NumericGreaterThanEqualOperation
          NumericGreaterThanEqualOperation realises the >=() library operation.
 class NumericGreaterThanOperation
          NumericGreaterThanOperation realises the >() library operation.
 class NumericLessThanEqualOperation
          NumericLessThanEqualOperation realises the <=() library operation.
 class NumericLessThanOperation
          NumericLessThanOperation realises the <() library operation.
 class NumericMaxOperation
          NumericMaxOperation realises the max() library operation.
 class NumericMinOperation
          NumericMinOperation realises the min() library operation.
 class NumericMinusOperation
          NumericMinusOperation realises the -() library operation.
 class NumericModOperation
          NumericModOperation realises the mod() library operation.
 class NumericPlusOperation
          NumericPlusOperation realises the +() library operation.
 class NumericTimesOperation
          NumericTimesOperation realises the *() library operation.
 class UnlimitedNaturalOclAsTypeOperation
          UnlimitedNaturalOclAsTypeOperation realizes the UnlimitedNatural::oclAsType() library operation.
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.oclany
 

Classes in org.eclipse.ocl.examples.library.oclany that implement LibraryBinaryOperation
 class OclAnyEqualOperation
          OclAnyEqualOperation realises the OCLAny::=() library operation and regular derived implementations since the Value classes exhibit OCL value semantics.
 class OclAnyNotEqualOperation
          OclAnyNotEqualOperation realises the OCLAny::<>() library operation and regular derived implementations since the Value classes exhibit OCL value semantics.
 class OclAnyOclAsTypeOperation
          OclAnyOclAsTypeOperation realises the OclAny::oclAsType() library operation.
 class OclAnyOclIsInStateOperation
          OclAnyOclIsInvalidOperation realises the OclAny::oclIsInvalid() library operation.
 class OclAnyOclIsKindOfOperation
          OclAnyOclIsKindOfOperation realises the OclAny::oclIsKindOf() library operation.
 class OclAnyOclIsTypeOfOperation
          OclAnyOclIsTypeOfOperation realises the OclAny::oclIsTypeOf() library operation.
 class OclAnyOclLogOperation
          OclAnyOclLogOperation realises the OclAny::oclLog() library operation.
 class OclComparableCompareToOperation
          OclComparableCompareToOperation realizes the abstract compareTo library operation using intrinsic Java functionality.
 class OclComparableComparisonOperation
          OclComparableComparisonOperation provides the abstract support for a comparison operation.
 class OclComparableGreaterThanEqualOperation
          GreaterThanEqualOperation realises the >=() library operation.
 class OclComparableGreaterThanOperation
          GreaterThanEqualOperation realises the >() library operation.
 class OclComparableLessThanEqualOperation
          GreaterThanEqualOperation realises the <=() library operation.
 class OclComparableLessThanOperation
          GreaterThanEqualOperation realises the <() library operation.
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.oclvoid
 

Classes in org.eclipse.ocl.examples.library.oclvoid that implement LibraryBinaryOperation
 class OclVoidAndOperation
          OclVoidAndOperation realises the OclVoid::and() library operation.
 class OclVoidImpliesOperation
          OclVoidImpliesOperation realises the OclVoid::implies() library operation.
 class OclVoidOrOperation
          OclVoidOrOperation realises the OclVoid::or() library operation.
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.real
 

Classes in org.eclipse.ocl.examples.library.real that implement LibraryBinaryOperation
 class RealCompareToOperation
          Deprecated. 
 class RealMinusOperation
          Deprecated. 
 class RealPlusOperation
          Deprecated. 
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.library.string
 

Classes in org.eclipse.ocl.examples.library.string that implement LibraryBinaryOperation
 class StringAtOperation
          StringAtOperation realises the String::at() library operation.
 class StringCompareToOperation
          StringCompareToOperation realises the String::compareTo() library operation.
 class StringConcatOperation
          StringConcatOperation realises the String::concat() library operation.
 class StringEndsWithOperation
          StringEndsWithOperation realises the String::endsWith() library operation.
 class StringEqualsIgnoreCaseOperation
          OrderedSetSubOrderedSetOperation realises the OrderedSet::subOrderedSet() library operation.
 class StringGreaterThanEqualOperation
          StringGreaterThanEqualOperation realises the String::>=() library operation.
 class StringGreaterThanOperation
          StringGreaterThanOperation realises the String::>() library operation.
 class StringIndexOfOperation
          StringIndexOfOperation realises the String::indexOf() library operation.
 class StringLastIndexOfOperation
          StringLastIndexOfOperation realises the String::lastIndexOf() library operation.
 class StringLessThanEqualOperation
          StringLessThanEqualOperation realises the String::<=() library operation.
 class StringLessThanOperation
          StringLessThanOperation realises the String::<() library operation.
 class StringMatchesOperation
          StringMatchesOperation realises the String::matches() library operation.
 class StringStartsWithOperation
          StringStartsWithOperation realises the String::startsWith() library operation.
 class StringTokenizeOperation
          StringTokenizeOperation realises the String::tokenize() library operations.
 

Uses of LibraryBinaryOperation in org.eclipse.ocl.examples.pivot.library
 

Classes in org.eclipse.ocl.examples.pivot.library that implement LibraryBinaryOperation
 class JavaCompareToOperation