| java.lang.Object org.kuali.core.datadictionary.ValidationCompletionUtils
ValidationCompletionUtils | public class ValidationCompletionUtils (Code) | | |
ValidationCompletionUtils | public ValidationCompletionUtils()(Code) | | |
getAttributeClass | public Class getAttributeClass(Class boClass, String attributeName)(Code) | | This method determines the Class of the attributeName passed in. Null will be returned if the member is not available, or if
a reflection exception is thrown.
Parameters: rootClass - - Class that the attributeName property exists in. Parameters: attributeName - - Name of the attribute you want a class for. The Class of the attributeName, if the attribute exists on the rootClass. Null otherwise. |
getCollectionElementClass | public Class getCollectionElementClass(Class boClass, String collectionName)(Code) | | This method determines the Class of the elements in the collectionName passed in.
Parameters: boClass - Class that the collectionName collection exists in. Parameters: collectionName - the name of the collection you want the element class for |
isBusinessObjectClass | public boolean isBusinessObjectClass(Class clazz)(Code) | | Parameters: clazz - true if the given Class is a descendent of BusinessObject |
isCollectionPropertyOf | public boolean isCollectionPropertyOf(Class targetClass, String propertyName)(Code) | | Parameters: clazz - Parameters: propertyName - true if the given propertyName names a Collection property of the given class throws: CompletionException - if there is a problem accessing the named property on the given class |
isDescendentClass | public boolean isDescendentClass(Class descendentClass, Class ancestorClass)(Code) | | Parameters: descendentClass - Parameters: ancestorClass - true if descendentClass is a descendent of ancestorClass |
isDocumentClass | public boolean isDocumentClass(Class clazz)(Code) | | Parameters: clazz - true if the given Class is a descendent of Document |
isMaintainableClass | public boolean isMaintainableClass(Class clazz)(Code) | | Parameters: clazz - true if the given Class is a descendent of Maintainable |
isPreRulesCheckClass | public boolean isPreRulesCheckClass(Class clazz)(Code) | | Parameters: clazz - true if the given Class is a descendent of PreRulesCheck |
isPropertyOf | public boolean isPropertyOf(Class targetClass, String propertyName)(Code) | | Parameters: clazz - Parameters: propertyName - true if the given propertyName names a property of the given class throws: CompletionException - if there is a problem accessing the named property on the given class |
|
|