*
* @see http://www.w3.org/TR/xml-infoset/#infoitem.element
*
*/
public static XSAttributeUse createAttributeXmlns() {
XSSimpleTypeDecl simpleType = new XSGeneratorSimpleType("string");
XSAttributeDecl attr = new XSAttributeDecl();
attr.setValues(ATTR_NAME_XMLNS, null, simpleType, (short) 0, (short) 0, null, null, null);
XSAttributeUseImpl attrUse = new XSAttributeUseImpl();
attrUse.fAttrDecl = attr;
return attrUse;