org.kuali.rice.kns.uif.util
Class ComponentUtils
java.lang.Object
org.kuali.rice.kns.uif.util.ComponentUtils
public class ComponentUtils
- extends Object
Utility class providing methods to help create and modify
Component
instances
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
Method Summary |
static
|
copy(T component)
|
static
|
copyComponentList(List<T> components)
|
static
|
copyField(T component,
String addBindingPrefix)
|
static
|
copyFieldList(List<T> fields)
|
static
|
copyFieldList(List<T> fields,
String addBindingPrefix)
|
protected static
|
copyObject(T object)
|
static List<String> |
getComponentPropertyNames(Class<? extends Component> componentClass)
|
static
|
getComponentsOfType(List<? extends Component> items,
Class<T> componentType)
|
protected static Object |
getCopyPropertyValue(Set<String> propertiesForReferenceCopy,
String propertyName,
Object propertyValue)
|
protected static
|
getNewInstance(T object)
|
static void |
prefixBindingPath(DataBinding field,
String addBindingPrefix)
|
static void |
prefixBindingPath(List<? extends Field> fields,
String addBindingPrefix)
|
static void |
pushObjectToContext(Component component,
String contextName,
Object contextValue)
|
static void |
pushObjectToContext(List<? extends Component> components,
String contextName,
Object contextValue)
|
static void |
setComponentPropertyDeep(Component component,
String propertyPath,
Object propertyValue)
|
static void |
setComponentsPropertyDeep(List<? extends Component> components,
String propertyPath,
Object propertyValue)
|
static void |
setNewIds(Component component)
|
static List<? extends Ordered> |
sort(List<? extends Ordered> items,
int defaultOrderSequence)
Performs sorting logic of the given list of Ordered
instances by its order property |
static void |
updateContextForLine(Component component,
Object collectionLine,
int lineIndex)
|
static void |
updateContextsForLine(List<? extends Component> components,
Object collectionLine,
int lineIndex)
|
static void |
updateIdsWithSuffix(Component component,
String idSuffix)
|
static void |
updateIdsWithSuffix(List<? extends Component> components,
String idSuffix)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ComponentUtils
public ComponentUtils()
copy
public static <T extends Component> T copy(T component)
copyObject
protected static <T> T copyObject(T object)
getCopyPropertyValue
protected static Object getCopyPropertyValue(Set<String> propertiesForReferenceCopy,
String propertyName,
Object propertyValue)
getNewInstance
protected static <T> T getNewInstance(T object)
copyField
public static <T extends Component> T copyField(T component,
String addBindingPrefix)
copyFieldList
public static <T extends Field> List<T> copyFieldList(List<T> fields,
String addBindingPrefix)
copyFieldList
public static <T extends Field> List<T> copyFieldList(List<T> fields)
copyComponentList
public static <T extends Component> List<T> copyComponentList(List<T> components)
getComponentsOfType
public static <T extends Component> List<T> getComponentsOfType(List<? extends Component> items,
Class<T> componentType)
prefixBindingPath
public static void prefixBindingPath(List<? extends Field> fields,
String addBindingPrefix)
prefixBindingPath
public static void prefixBindingPath(DataBinding field,
String addBindingPrefix)
updateIdsWithSuffix
public static void updateIdsWithSuffix(List<? extends Component> components,
String idSuffix)
updateIdsWithSuffix
public static void updateIdsWithSuffix(Component component,
String idSuffix)
setNewIds
public static void setNewIds(Component component)
setComponentsPropertyDeep
public static void setComponentsPropertyDeep(List<? extends Component> components,
String propertyPath,
Object propertyValue)
setComponentPropertyDeep
public static void setComponentPropertyDeep(Component component,
String propertyPath,
Object propertyValue)
getComponentPropertyNames
public static List<String> getComponentPropertyNames(Class<? extends Component> componentClass)
pushObjectToContext
public static void pushObjectToContext(List<? extends Component> components,
String contextName,
Object contextValue)
pushObjectToContext
public static void pushObjectToContext(Component component,
String contextName,
Object contextValue)
updateContextsForLine
public static void updateContextsForLine(List<? extends Component> components,
Object collectionLine,
int lineIndex)
updateContextForLine
public static void updateContextForLine(Component component,
Object collectionLine,
int lineIndex)
sort
public static List<? extends Ordered> sort(List<? extends Ordered> items,
int defaultOrderSequence)
- Performs sorting logic of the given list of
Ordered
instances by its order property
Items list is sorted based on its order property. Lower order values are
placed higher in the list. If a item does not have a value assigned for
the order (or is equal to the default order of 0), it will be assigned
the a value based on the given order sequence integer. If two or more
items share the same order value, all but the last item found in the list
will be removed.
- Parameters:
items
- defaultOrderSequence
-
- Returns:
- List sorted items
- See Also:
org.kuali.rice.kns.uif.Component.getOrder()
,
org.springframework.core.Ordered
Copyright © 2004-2011 The Kuali Foundation. All Rights Reserved.