String qname = attrs[i].getQName();
String value = attrs[i].getValue();
this.buffer.append(' ').append(qname).append("=\"").append(
value).append("\"");
ELText txt = ELText.parse(value);
if (txt != null) {
if (txt.isLiteral()) {
this.addInstruction(new LiteralAttributeInstruction(
qname, txt.toString()));
} else {
this.addInstruction(new AttributeInstruction(
this.alias, qname, txt));
}
}