* Load the attribute from the specified XML element.
* @param attrElement the root element for the attribute XML data
* @return the new attribute created by loading it from the XML element
*/
public static Attribute Load (Element attrElement) {
XMLSerializationManager serializer = XMLSerializationManager.getDefaultInstance();
return (Attribute) serializer.loadFromElement(attrElement,
XMLSerializationManager.getAttributeSerializer());
}