| org.kuali.core.lookup.keyvalues.KeyValuesFinder
All known Subclasses: org.kuali.core.lookup.keyvalues.KeyValuesBase,
KeyValuesFinder | public interface KeyValuesFinder (Code) | | This interface defines basic methods value finders.
|
Method Summary | |
public String | getKeyLabel(String key) Returns the label for the associated key. | public Map | getKeyLabelMap() Returns a map with the key as the key of the map and the label as the value. | public List | getKeyValues() Builds a list of key values representations for valid value selections. |
getKeyLabel | public String getKeyLabel(String key)(Code) | | Returns the label for the associated key.
Parameters: key - |
getKeyLabelMap | public Map getKeyLabelMap()(Code) | | Returns a map with the key as the key of the map and the label as the value. Used to render the label instead of the code in
the jsp when the field is readonly.
|
getKeyValues | public List getKeyValues()(Code) | | Builds a list of key values representations for valid value selections.
List of KeyValue objects. |
|
|