{
if (md.name().startsWith("set"))
{
String property = md.name().substring(3).toLowerCase();
YCmpXsdAttribute xsdprop = xcmp.getAttribute(property);
if (xsdprop != null)
{
String descr = md.commentText();
xsdprop.setDescription(descr);
xsdprop.setType(md.signature().substring(1, md.signature().length() - 1));
// log.info("Found YComponent: " + xcmp.getComponentInfo().getId() + "." + xsdprop.getName() + " -> " + xsdprop.getDescription());
}
}