| java.lang.Object org.kuali.kfs.rules.AttributeReference
AttributeReference | public class AttributeReference (Code) | | This class refers to an attribute which has a value and is labeled in the DataDictionary.
|
AttributeReference | public AttributeReference(Class businessObjectClass, String propertyName, Object value)(Code) | | Constructor. It takes the value instead of the BO instance (using PropertyUtils or BeanUtils with the propertyName), in order
to promote the use of the property getter, to help usage searches and automated refactorings.
Parameters: businessObjectClass - a class with a business object entry in the DataDictionary Parameters: propertyName - the name of the attribute in the DD entry and on the form (for the error path) Parameters: value - the value of the property on the form (may be null). |
getLabel | public String getLabel()(Code) | | the label of the attribute in the DD |
getPropertyName | public String getPropertyName()(Code) | | the name of the attribute in the DD entry and on the form (for the error path) |
getValueString | public String getValueString()(Code) | | the attribute value as a String |
|
|