Package org.apache.tiles.util
Class CombinedBeanInfo
- java.lang.Object
-
- org.apache.tiles.util.CombinedBeanInfo
-
public class CombinedBeanInfo extends java.lang.Object
Contains the bean infos about one or more classes.- Since:
- 2.2.0
- Version:
- $Rev: 995228 $ $Date: 2010-09-09 05:50:09 +1000 (Thu, 09 Sep 2010) $
-
-
Constructor Summary
Constructors Constructor Description CombinedBeanInfo(java.lang.Class<?>... clazzes)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.beans.FeatureDescriptor>
getDescriptors()
Returns the descriptors of all the introspected classes.java.util.Map<java.lang.String,java.beans.PropertyDescriptor>
getMappedDescriptors(java.lang.Class<?> clazz)
Returns a map of the introspected properties for the given class.java.util.Set<java.lang.String>
getProperties(java.lang.Class<?> clazz)
Returns the set of properties for the given introspected class.
-
-
-
Method Detail
-
getDescriptors
public java.util.List<java.beans.FeatureDescriptor> getDescriptors()
Returns the descriptors of all the introspected classes.- Returns:
- The feature descriptors.
- Since:
- 2.2.0
-
getMappedDescriptors
public java.util.Map<java.lang.String,java.beans.PropertyDescriptor> getMappedDescriptors(java.lang.Class<?> clazz)
Returns a map of the introspected properties for the given class.- Parameters:
clazz
- The class to get the properties from.- Returns:
- The map of property descriptors.
- Since:
- 2.2.0
-
getProperties
public java.util.Set<java.lang.String> getProperties(java.lang.Class<?> clazz)
Returns the set of properties for the given introspected class.- Parameters:
clazz
- The class to get the properties from.- Returns:
- The set of properties.
- Since:
- 2.2.0
-
-