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

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

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

Util.getClassName介绍

暂无

代码示例

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

  1. public boolean isIncluded(String name)
  2. {
  3. if ((m_includeFilter == null) && (m_excludeFilter == null))
  4. {
  5. return true;
  6. }
  7. // Get the class name portion of the target class.
  8. String className = Util.getClassName(name);
  9. // If there are no include filters then all classes are included
  10. // by default, otherwise try to find one match.
  11. boolean included = (m_includeFilter == null);
  12. for (int i = 0;
  13. (!included) && (m_includeFilter != null) && (i < m_includeFilter.size());
  14. i++)
  15. {
  16. included = SimpleFilter.compareSubstring(m_includeFilter.get(i), className);
  17. }
  18. // If there are no exclude filters then no classes are excluded
  19. // by default, otherwise try to find one match.
  20. boolean excluded = false;
  21. for (int i = 0;
  22. (!excluded) && (m_excludeFilter != null) && (i < m_excludeFilter.size());
  23. i++)
  24. {
  25. excluded = SimpleFilter.compareSubstring(m_excludeFilter.get(i), className);
  26. }
  27. return included && !excluded;
  28. }

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

  1. String className = Util.getClassName(name);

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

  1. public boolean isIncluded(String name)
  2. {
  3. if ((m_includeFilter == null) && (m_excludeFilter == null))
  4. {
  5. return true;
  6. }
  7. // Get the class name portion of the target class.
  8. String className = Util.getClassName(name);
  9. // If there are no include filters then all classes are included
  10. // by default, otherwise try to find one match.
  11. boolean included = (m_includeFilter == null);
  12. for (int i = 0;
  13. (!included) && (m_includeFilter != null) && (i < m_includeFilter.length);
  14. i++)
  15. {
  16. included = checkSubstring(m_includeFilter[i], className);
  17. }
  18. // If there are no exclude filters then no classes are excluded
  19. // by default, otherwise try to find one match.
  20. boolean excluded = false;
  21. for (int i = 0;
  22. (!excluded) && (m_excludeFilter != null) && (i < m_excludeFilter.length);
  23. i++)
  24. {
  25. excluded = checkSubstring(m_excludeFilter[i], className);
  26. }
  27. return included && !excluded;
  28. }

相关文章