org.apache.felix.framework.util.Util.getClassPackage()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(3.3k)|赞(0)|评价(0)|浏览(184)

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

Util.getClassPackage介绍

暂无

代码示例

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. public Class getClassByDelegation(String name) throws ClassNotFoundException
  2. {
  3. if (!m_exportNames.contains(Util.getClassPackage(name)))
  4. {
  5. throw new ClassNotFoundException(name);
  6. }
  7. return getClass().getClassLoader().loadClass(name);
  8. }

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. public Class getClass(String name) throws ClassNotFoundException
  2. {
  3. // Get the package of the target class.
  4. String pkgName = Util.getClassPackage(name);
  5. ResolvedPackage rp = (ResolvedPackage) m_pkgMap.get(pkgName);
  6. if (rp != null)
  7. {
  8. try
  9. {
  10. Class clazz = m_exporter.getClassByDelegation(name);
  11. if (clazz != null)
  12. {
  13. return clazz;
  14. }
  15. }
  16. catch (ClassNotFoundException ex)
  17. {
  18. // Do not throw the exception here, since we want
  19. // to continue search other package sources and
  20. // ultimately the module's own content.
  21. }
  22. }
  23. return null;
  24. }

代码示例来源:origin: apache/felix

  1. private boolean isFiltered(String name)
  2. String pkgName = Util.getClassPackage(name);
  3. List<List<String>> includeFilters = m_includedPkgFilters.get(pkgName);
  4. List<List<String>> excludeFilters = m_excludedPkgFilters.get(pkgName);

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. public Class getClass(String name) throws ClassNotFoundException
  2. {
  3. Class clazz = null;
  4. // Get the package of the target class.
  5. String pkgName = Util.getClassPackage(name);
  6. // Only check when the package of the target class is
  7. // the same as the package for the wire.
  8. if (m_capability.getNamespace().equals(ICapability.PACKAGE_NAMESPACE) &&
  9. m_capability.getProperties().get(ICapability.PACKAGE_PROPERTY).equals(pkgName))
  10. {
  11. // Check the include/exclude filters from the target package
  12. // to make sure that the class is actually visible. We delegate
  13. // to the exporting module, rather than its content, so it can
  14. // it can follow any internal wires it may have (e.g., if the
  15. // package has multiple sources).
  16. if (m_capability.getNamespace().equals(ICapability.PACKAGE_NAMESPACE)
  17. && ((Capability) m_capability).isIncluded(name))
  18. {
  19. clazz = m_exporter.getClassByDelegation(name);
  20. }
  21. // If no class was found, then we must throw an exception
  22. // since the exporter for this package did not contain the
  23. // requested class.
  24. if (clazz == null)
  25. {
  26. throw new ClassNotFoundException(name);
  27. }
  28. }
  29. return clazz;
  30. }

代码示例来源:origin: apache/felix

  1. String pkgName = Util.getClassPackage(name);
  2. if (pkgName.length() == 0)

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. String pkgName = Util.getClassPackage(name);

代码示例来源:origin: apache/felix

  1. String pkgName = (isClass) ? Util.getClassPackage(name) : Util.getResourcePackage(name);

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. ? Util.getClassPackage(name)
  2. : Util.getResourcePackage(name);

代码示例来源:origin: apache/felix

  1. String pkgName = Util.getClassPackage(name);

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. String pkgName = Util.getClassPackage(name);
  2. if (pkgName.length() > 0)

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. Util.getClassPackage(className);
  2. IModule requesterModule = ((BundleImpl) requester).getCurrentModule();

代码示例来源:origin: apache/felix

  1. Util.getClassPackage(className);

相关文章