Uses of Class
jdrew.oo.util.EngineException

Packages that use EngineException
jdrew.oo.util   
 

Uses of EngineException in jdrew.oo.util
 

Methods in jdrew.oo.util that throw EngineException
 java.util.Vector QueryTypes.findAllDirectSubClassesOfEverything()
          This method will find all the super classes in the current type system.
 java.util.Vector QueryTypes.findAllDirectSuperClassesOfEverything()
          This method will find all the direct super class relations in the current type system.
 java.lang.String[] QueryTypes.findAllSubClasses(java.lang.String classString)
          This method will find all the subClasses for a given class This method uses transitive closure and not direct subClass.
 java.util.Vector QueryTypes.findAllSubClassesOfEverything()
          This method will find all the sub classes relations in the current type system.
 java.lang.String[] QueryTypes.findAllSuperClasses(java.lang.String classString)
          This method will find all the super classes for a given class This method uses transitive closure and not direct superClass.
 java.util.Vector QueryTypes.findAllSuperClassesOfEverything()
          This method will find all the super classes relations in the current type system.
 java.lang.String QueryTypes.greatestLowerBound(java.lang.String[] classes)
          This method will determine the greaterLowerBound of an Array of classes(Strings)
 boolean QueryTypes.isDirectSubClass(java.lang.String subClass, java.lang.String superClass)
          This method will determine if a class is a subClass of another class during Querying This method uses transitive closure and not direct subClass.
 boolean QueryTypes.isDirectSuperClass(java.lang.String superClass, java.lang.String subClass)
          This method will determine is a class is a super class of another class during Querying
 boolean QueryTypes.isSubClass(java.lang.String subClass, java.lang.String superClass)
          This method will determine if a class is a subClass of another class during Querying This method uses transitive closure and not direct subClass.
 boolean QueryTypes.isSuperClass(java.lang.String superClass, java.lang.String subClass)
          This method will determine is a class is a super class of another class during Querying This method uses transitive closure and not direct super Class.
 java.lang.String QueryTypes.leastUpperBound(java.lang.String[] classes)
          This method will determine the least upper bound of an array of classes