internal AllorsPredicateInstanceOfSql(AllorsExtentFilteredSql extent, IObjectType instanceType, IClass[] instanceClasses)
 {
     PredicateAssertions.ValidateInstanceof(instanceType);
     this.instanceClasses = instanceClasses;
 }
Beispiel #2
0
 internal InstanceOf(IObjectType instanceType, IObjectType[] instanceClasses)
 {
     PredicateAssertions.ValidateInstanceof(instanceType);
     this.instanceClasses = instanceClasses;
 }
Beispiel #3
0
        internal Instanceof(IObjectType objectType)
        {
            PredicateAssertions.ValidateInstanceof(objectType);

            this.objectType = objectType;
        }