本文整理汇总了Java中org.simpleframework.xml.Namespace.reference方法的典型用法代码示例。如果您正苦于以下问题:Java Namespace.reference方法的具体用法?Java Namespace.reference怎么用?Java Namespace.reference使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.simpleframework.xml.Namespace
的用法示例。
在下文中一共展示了Namespace.reference方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getNamespaceString
import org.simpleframework.xml.Namespace; //导入方法依赖的package包/类
private static String getNamespaceString( Class clazz ) {
Namespace namespace = (Namespace) clazz.getAnnotation(Namespace.class);
if (namespace == null) {
Package pkg = clazz.getPackage();
if (pkg != null) {
namespace = pkg.getAnnotation(Namespace.class);
if (namespace == null) { // prior to android v4.3 package annotations aren't supported
namespace = getAnnotation( pkg, Namespace.class );
}
}
}
String ns = "";
if (namespace != null)
ns = namespace.reference();
return ns;
}
示例2: scope
import org.simpleframework.xml.Namespace; //导入方法依赖的package包/类
/**
* This is use to apply for <code>NamespaceList</code> annotations
* on the node. If there is no namespace list then this will return
* and the node will be left unchanged. If however the namespace
* list is not empty the the namespaces are added.
*
* @param node this is the node to apply the namespace list to
*/
private void scope(OutputNode node) {
NamespaceMap map = node.getNamespaces();
for(Namespace next : scope) {
String reference = next.reference();
String prefix = next.prefix();
map.setReference(reference, prefix);
}
}