本文整理汇总了Java中org.dom4j.QName.getName方法的典型用法代码示例。如果您正苦于以下问题:Java QName.getName方法的具体用法?Java QName.getName怎么用?Java QName.getName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.dom4j.QName
的用法示例。
在下文中一共展示了QName.getName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: resolveQName
import org.dom4j.QName; //导入方法依赖的package包/类
/**
* Tries to resolve give QName into a "top-level" namespace and prefix. If the
* there is no prefix and the namespace is the default namespace, assign the
* NAMED defaultNamespace.
*
* @param qName Description of the Parameter
* @return Description of the Return Value
* @exception Exception Description of the Exception
*/
private QName resolveQName(QName qName) throws Exception {
String prefix = qName.getNamespacePrefix();
String name = qName.getName();
String uri = qName.getNamespaceURI();
prtln("\n\t resolveQName: ", 1);
prtln("\t\t name: " + name, 1);
prtln("\t\t prefix: " + prefix, 1);
prtln("\t\t uri: " + uri, 1);
Namespace topLevelNS = namespaces.getNSforUri(uri);
if (topLevelNS == null) {
prtlnErr("ERROR: resolveQName could not find top-level namespace for " + uri);
return null;
}
else if (topLevelNS == namespaces.getDefaultNamespace()) {
topLevelNS = namespaces.getNamedDefaultNamespace();
}
return df.createQName(name, topLevelNS);
}
示例2: resolveQName
import org.dom4j.QName; //导入方法依赖的package包/类
/**
* Tries to resolve give QName into a "top-level" namespace and prefix. If the
* there is no prefix and the namespace is the default namespace, assign the
* NAMED defaultNamespace.
*
* @param qName Description of the Parameter
* @return Description of the Return Value
* @exception Exception Description of the Exception
*/
private QName resolveQName(QName qName) throws Exception {
String prefix = qName.getNamespacePrefix();
String name = qName.getName();
String uri = qName.getNamespaceURI();
prtln("\n\t resolveQName: ", 1);
prtln("\t\t name: " + name, 1);
prtln("\t\t prefix: " + prefix, 1);
prtln("\t\t uri: " + uri, 1);
Namespace topLevelNS = namespaces.getNSforUri(uri);
if (topLevelNS == null) {
prtlnErr("ERROR: resolveQName could not find top-level namespace for " + uri);
return null;
}
else if (topLevelNS == namespaces.getDefaultNamespace()) {
topLevelNS = namespaces.getNamedDefaultNamespace();
}
return DocumentHelper.createQName(name, topLevelNS);
}
示例3: getXMLTreeNodeEffectiveQualifiedNameAsXPathLeg
import org.dom4j.QName; //导入方法依赖的package包/类
protected String getXMLTreeNodeEffectiveQualifiedNameAsXPathLeg(XPathActivityXMLTreeNode node)
{
QName qname = node.getNodeQName();
String effectiveNamespacePrefix = addNamespaceToXPathMap(qname.getNamespace());
return("/" +
(node.isAttribute() ? "@" : "") +
(effectiveNamespacePrefix.length() > 0 ? (effectiveNamespacePrefix + ":") : "") +
qname.getName());
}
开发者ID:apache,项目名称:incubator-taverna-workbench-common-activities,代码行数:11,代码来源:XPathActivityXMLTree.java