當前位置: 首頁>>代碼示例>>Java>>正文


Java Attribute.getName方法代碼示例

本文整理匯總了Java中org.jdom2.Attribute.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java Attribute.getName方法的具體用法?Java Attribute.getName怎麽用?Java Attribute.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.jdom2.Attribute的用法示例。


在下文中一共展示了Attribute.getName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getRequiredAttribute

import org.jdom2.Attribute; //導入方法依賴的package包/類
public static Attribute getRequiredAttribute(Element el, String name, String...aliases) throws InvalidXMLException {
    aliases = ArrayUtils.append(aliases, name);

    Attribute attr = null;
    for(String alias : aliases) {
        Attribute a = el.getAttribute(alias);
        if(a != null) {
            if(attr == null) {
                attr = a;
            } else {
                throw new InvalidXMLException("attributes '" + attr.getName() + "' and '" + alias + "' are aliases for the same thing, and cannot be combined", el);
            }
        }
    }

    if(attr == null) {
        throw new InvalidXMLException("attribute '" + name + "' is required", el);
    }

    return attr;
}
 
開發者ID:OvercastNetwork,項目名稱:ProjectAres,代碼行數:22,代碼來源:XMLUtils.java

示例2: parseString

import org.jdom2.Attribute; //導入方法依賴的package包/類
/**
 * Parses a JDom2 Object into a string
 * @param e
 *            Object (Element, Text, Document or Attribute)
 * @return String
 * @author sholzer (11.05.2015)
 */
public String parseString(Object e) {
    XMLOutputter element2String = new XMLOutputter();
    if (e instanceof Element) {
        return element2String.outputString((Element) e);
    }
    if (e instanceof Text) {
        return element2String.outputString((Text) e);
    }
    if (e instanceof Document) {
        return element2String.outputString((Document) e);
    }
    if (e instanceof org.jdom2.Attribute) {
        Attribute a = (org.jdom2.Attribute) e;
        return a.getName() + "=\"" + a.getValue() + "\"";
    }
    return e.toString();
}
 
開發者ID:maybeec,項目名稱:lexeme,代碼行數:25,代碼來源:JDom2Util.java

示例3: describe

import org.jdom2.Attribute; //導入方法依賴的package包/類
public String describe() {
    if(node instanceof Element) {
        return describe((Element) node);
    } else {
        Attribute attr = (Attribute) node;
        return "'" + attr.getName() + "' attribute of " + describe(attr.getParent());
    }
}
 
開發者ID:OvercastNetwork,項目名稱:ProjectAres,代碼行數:9,代碼來源:Node.java


注:本文中的org.jdom2.Attribute.getName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。