* @return the <code>String</code> representation of the corresponding
* opening HTML tag.
*/
public String getOpeningTag() {
String s = "<" + getQName();
Attributes localAttributes = getAttributes();
for (int i = 0; i < localAttributes.getLength(); i++) {
s += " " + localAttributes.getQName(i) + "=\""
+ localAttributes.getValue(i) + "\"";
}
return s += ">";
}