if (simpleName.startsWith("set")) {
Element attribute = document.createElement("attribute");
addLeafTextElement(simpleName.substring(3, 4).toLowerCase(Locale.ENGLISH)
+ simpleName.substring(4), "name", attribute, document);
addLeafTextElement(Boolean.toString(tagAttribute.required()), "required", attribute, document);
addLeafTextElement(Boolean.toString(tagAttribute.rtexprvalue()), "rtexprvalue", attribute, document);
if (uiTagAttribute != null) {
addLeafTextElement(uiTagAttribute.expression().toString(), "ui-attribute-expression", attribute, document);
String [] uiTypeClasses = uiTagAttribute.type();
if (uiTypeClasses.length > 0) {