javax.xml.xpath.XPathFactoryFinder.debugDisplayClassLoader()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(119)

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

XPathFactoryFinder.debugDisplayClassLoader介绍

暂无

代码示例

代码示例来源:origin: robovm/robovm

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>SchemaFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link SchemaFactory}, and
  7. * {@code SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if (debug) {
  15. debugDisplayClassLoader();
  16. }
  17. }

代码示例来源:origin: ibinti/bugvm

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>SchemaFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link SchemaFactory}, and
  7. * {@code SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if (debug) {
  15. debugDisplayClassLoader();
  16. }
  17. }

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>SchemaFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link SchemaFactory}, and
  7. * {@code SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if (debug) {
  15. debugDisplayClassLoader();
  16. }
  17. }

代码示例来源:origin: javax.xml.parsers/jaxp-api

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>XPathFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link XPathFactory}, and
  7. * {@link SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if( debug ) {
  15. debugDisplayClassLoader();
  16. }
  17. }

代码示例来源:origin: MobiVM/robovm

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>SchemaFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link SchemaFactory}, and
  7. * {@code SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if (debug) {
  15. debugDisplayClassLoader();
  16. }
  17. }

代码示例来源:origin: com.bugvm/bugvm-rt

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>SchemaFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link SchemaFactory}, and
  7. * {@code SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if (debug) {
  15. debugDisplayClassLoader();
  16. }
  17. }

代码示例来源:origin: org.apache.servicemix.specs/org.apache.servicemix.specs.jaxp-api-1.4

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>SchemaFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link SchemaFactory}, and
  7. * {@link SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if( debug ) {
  15. debugDisplayClassLoader();
  16. }
  17. }

代码示例来源:origin: com.gluonhq/robovm-rt

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>SchemaFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link SchemaFactory}, and
  7. * {@code SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if (debug) {
  15. debugDisplayClassLoader();
  16. }
  17. }

代码示例来源:origin: FlexoVM/flexovm

  1. /**
  2. * <p>Constructor that specifies <code>ClassLoader</code> to use
  3. * to find <code>SchemaFactory</code>.</p>
  4. *
  5. * @param loader
  6. * to be used to load resource, {@link SchemaFactory}, and
  7. * {@code SchemaFactoryLoader} implementations during
  8. * the resolution process.
  9. * If this parameter is null, the default system class loader
  10. * will be used.
  11. */
  12. public XPathFactoryFinder(ClassLoader loader) {
  13. this.classLoader = loader;
  14. if (debug) {
  15. debugDisplayClassLoader();
  16. }
  17. }

相关文章