&& paramTypes.length == 1
&& paramTypes[0].equals(XmlBeanConfig.class))) {
ConfigType<?> customBeanType
= TypeFactory.getType(XmlBeanConfig.class);
_addCustomBean = new XmlBeanAttribute(method, customBeanType);
}
else if ((name.equals("addAnnotation")
&& paramTypes.length == 1
&& paramTypes[0].equals(Annotation.class))) {
ConfigType<?> customBeanType
= TypeFactory.getType(XmlBeanConfig.class);
_addCustomBean = new XmlBeanAttribute(method, customBeanType);
}
else if (name.equals("setProperty")
&& paramTypes.length == 2
&& paramTypes[0].equals(String.class)) {
ConfigType<?> type = TypeFactory.getType(paramTypes[1]);