| java.lang.Object com.rift.coad.lib.common.ClassUtil
ClassUtil | public class ClassUtil (Code) | | This class supplies some methods for performing tests on classes.
author: Brett Chaldecott |
Method Summary | |
public static boolean | testForParent(Class ref, Class parentName) This method performs the test on a class for a given parent interface
or object. | public static boolean | testForParent(Class ref, String parentName) This method performs the test on a class for a given parent interface
or object. |
testForParent | public static boolean testForParent(Class ref, Class parentName)(Code) | | This method performs the test on a class for a given parent interface
or object.
TRUE if found, FALSE if not. Parameters: ref - The reference to the class to check. Parameters: parentName - The name of the parent to perform the check for. |
testForParent | public static boolean testForParent(Class ref, String parentName)(Code) | | This method performs the test on a class for a given parent interface
or object.
TRUE if found, FALSE if not. Parameters: ref - The reference to the class to check. Parameters: parentName - The name of the parent to perform the check for. |
|
|