Uses of Interface
org.eclipse.ocl.examples.domain.elements.DomainCollectionType

Packages that use DomainCollectionType
org.eclipse.ocl.examples.domain.elements   
org.eclipse.ocl.examples.domain.types   
org.eclipse.ocl.examples.domain.values.util   
org.eclipse.ocl.examples.library.executor   
org.eclipse.ocl.examples.pivot   
org.eclipse.ocl.examples.pivot.internal.impl   
org.eclipse.ocl.examples.pivot.manager   
 

Uses of DomainCollectionType in org.eclipse.ocl.examples.domain.elements
 

Methods in org.eclipse.ocl.examples.domain.elements that return DomainCollectionType
 DomainCollectionType DomainStandardLibrary.getBagType(DomainType elementType, IntegerValue lower, IntegerValue upper)
          Return the instance of the Bag metatype whose elements are of elementType.
 DomainCollectionType DomainStandardLibrary.getCollectionType(DomainType containerType, DomainType elementType, IntegerValue lower, IntegerValue upper)
          Return the specialized collection type for the containerType for elementType.
 DomainCollectionType DomainStandardLibrary.getOrderedSetType(DomainType elementType, IntegerValue lower, IntegerValue upper)
          Return the instance of the OrderedSet metatype whose elements are of elementType.
 DomainCollectionType DomainStandardLibrary.getSequenceType(DomainType elementType, IntegerValue lower, IntegerValue upper)
          Return the instance of the Sequence metatype whose elements are of elementType.
 DomainCollectionType DomainStandardLibrary.getSetType(DomainType elementType, IntegerValue lower, IntegerValue upper)
          Return the instance of the Set metatype whose elements are of elementType.
 

Methods in org.eclipse.ocl.examples.domain.elements with parameters of type DomainCollectionType
 boolean DomainStandardLibrary.conformsToCollectionType(DomainCollectionType firstCollectionType, DomainCollectionType secondCollectionType)
           
 boolean DomainStandardLibrary.isEqualToCollectionType(DomainCollectionType firstCollectionType, DomainCollectionType secondCollectionType)
           
 

Uses of DomainCollectionType in org.eclipse.ocl.examples.domain.types
 

Classes in org.eclipse.ocl.examples.domain.types that implement DomainCollectionType
 class AbstractCollectionType
           
 

Methods in org.eclipse.ocl.examples.domain.types that return DomainCollectionType
 DomainCollectionType AbstractStandardLibrary.getBagType(DomainType elementType)
           
 DomainCollectionType AbstractStandardLibrary.getCollectionType(DomainType elementType)
           
 DomainCollectionType AbstractStandardLibrary.getCollectionType(DomainType containerType, DomainType elementType, IntegerValue lower, IntegerValue upper)
           
 DomainCollectionType AbstractStandardLibrary.getOrderedSetType(DomainType elementType)
           
 DomainCollectionType AbstractStandardLibrary.getSequenceType(DomainType elementType)
           
 DomainCollectionType AbstractStandardLibrary.getSetType(DomainType elementType)
           
 

Methods in org.eclipse.ocl.examples.domain.types with parameters of type DomainCollectionType
 boolean AbstractStandardLibrary.conformsToCollectionType(DomainCollectionType firstCollectionType, DomainCollectionType secondCollectionType)
           
 boolean AbstractStandardLibrary.isEqualToCollectionType(DomainCollectionType firstCollectionType, DomainCollectionType secondCollectionType)
           
 

Uses of DomainCollectionType in org.eclipse.ocl.examples.domain.values.util
 

Methods in org.eclipse.ocl.examples.domain.values.util that return DomainCollectionType
static DomainCollectionType ValuesUtil.asCollectionType(java.lang.Object value)
           
 

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

Methods in org.eclipse.ocl.examples.library.executor that return DomainCollectionType
 DomainCollectionType ExecutableStandardLibrary.getBagType(DomainType elementType, IntegerValue lower, IntegerValue upper)
           
 DomainCollectionType ExecutableStandardLibrary.getCollectionType(DomainType genericType, DomainType elementType, IntegerValue lower, IntegerValue upper)
           
 DomainCollectionType ExecutableStandardLibrary.getOrderedSetType(DomainType elementType, IntegerValue lower, IntegerValue upper)
           
 DomainCollectionType ExecutableStandardLibrary.getSequenceType(DomainType elementType, IntegerValue lower, IntegerValue upper)
           
 DomainCollectionType ExecutableStandardLibrary.getSetType(DomainType elementType, IntegerValue lower, IntegerValue upper)
           
 

Uses of DomainCollectionType in org.eclipse.ocl.examples.pivot
 

Subinterfaces of DomainCollectionType in org.eclipse.ocl.examples.pivot
 interface BagType
          A representation of the model object 'Bag Type'.
 interface CollectionType
          A representation of the model object 'Collection Type'.
 interface OrderedSetType
          A representation of the model object 'Ordered Set Type'.
 interface SequenceType
          A representation of the model object 'Sequence Type'.
 interface SetType
          A representation of the model object 'Set Type'.
 

Uses of DomainCollectionType in org.eclipse.ocl.examples.pivot.internal.impl
 

Classes in org.eclipse.ocl.examples.pivot.internal.impl that implement DomainCollectionType
 class BagTypeImpl
          An implementation of the model object 'Bag Type'.
 class CollectionTypeImpl
          An implementation of the model object 'Collection Type'.
 class OrderedSetTypeImpl
          An implementation of the model object 'Ordered Set Type'.
 class SequenceTypeImpl
          An implementation of the model object 'Sequence Type'.
 class SetTypeImpl
          An implementation of the model object 'Set Type'.
 

Uses of DomainCollectionType in org.eclipse.ocl.examples.pivot.manager
 

Methods in org.eclipse.ocl.examples.pivot.manager with parameters of type DomainCollectionType
 boolean MetaModelManager.conformsToCollectionType(DomainCollectionType firstCollectionType, DomainCollectionType secondCollectionType)
           
 

Constructors in org.eclipse.ocl.examples.pivot.manager with parameters of type DomainCollectionType
CollectionTypeServer(PackageServer packageServer, DomainCollectionType domainType)