org.apache.velocity.runtime.RuntimeSingleton.dumpVMNamespace()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(67)

本文整理了Java中org.apache.velocity.runtime.RuntimeSingleton.dumpVMNamespace方法的一些代码示例,展示了RuntimeSingleton.dumpVMNamespace的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。RuntimeSingleton.dumpVMNamespace方法的具体详情如下:
包路径:org.apache.velocity.runtime.RuntimeSingleton
类名称:RuntimeSingleton
方法名:dumpVMNamespace

RuntimeSingleton.dumpVMNamespace介绍

[英]tells the vmFactory to dump the specified namespace. This is to support clearing the VM list when in inline-VM-local-scope mode
[中]通知vmFactory转储指定的命名空间。这是为了支持在内联VM本地作用域模式下清除VM列表

代码示例

代码示例来源:origin: velocity/velocity-dep

/**
 *  tells the vmFactory to dump the specified namespace.  This is to support
 *  clearing the VM list when in inline-VM-local-scope mode
 */
public static boolean dumpVMNamespace( String namespace )
{
  return RuntimeSingleton.dumpVMNamespace( namespace );
}

代码示例来源:origin: org.apache.velocity/com.springsource.org.apache.velocity

/**
 *  tells the vmFactory to dump the specified namespace.  This is to support
 *  clearing the VM list when in inline-VM-local-scope mode
 *
 * @param namespace The namespace to dump.
 * @return True if the namespace has been dumped.
 */
public static boolean dumpVMNamespace( String namespace )
{
  return RuntimeSingleton.dumpVMNamespace( namespace );
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.velocity

/**
 *  tells the vmFactory to dump the specified namespace.  This is to support
 *  clearing the VM list when in inline-VM-local-scope mode
 *
 * @param namespace The namespace to dump.
 * @return True if the namespace has been dumped.
 */
public static boolean dumpVMNamespace( String namespace )
{
  return RuntimeSingleton.dumpVMNamespace( namespace );
}

相关文章