String propertyValue = getAttr("property"); //$NON-NLS-1$
if (hasAttr("index")) { //$NON-NLS-1$
addArgument(new Argument(int.class, new Integer(getAttr("index"))), 0); //$NON-NLS-1$
}
BeanInfo beanInfo = Introspector.getBeanInfo(getTarget(references).getClass());
PropertyDescriptor[] pds = beanInfo.getPropertyDescriptors();
boolean methodFound = false;
Method method = null;
for (PropertyDescriptor pd : pds)
{