org.apache.felix.resolver.Util.isFragment()方法的使用及代码示例

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

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

Util.isFragment介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.osgi

  1. private boolean isMandatory(ResolveContext rc, Requirement requirement) {
  2. // The requirement is optional
  3. if (Util.isOptional(requirement)) {
  4. return false;
  5. }
  6. // This is a fragment that is already resolved and there is no unresolved hosts to attach it to
  7. Resource resource = requirement.getResource();
  8. if (Util.isFragment(resource) && rc.getWirings().containsKey(resource)) {
  9. return false;
  10. }
  11. return true;
  12. }

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.osgi

  1. private boolean isMandatory(ResolveContext rc, Requirement requirement) {
  2. // The requirement is optional
  3. if (Util.isOptional(requirement)) {
  4. return false;
  5. }
  6. // This is a fragment that is already resolved and there is no unresolved hosts to attach it to
  7. Resource resource = requirement.getResource();
  8. if (Util.isFragment(resource) && rc.getWirings().containsKey(resource)) {
  9. return false;
  10. }
  11. return true;
  12. }

代码示例来源:origin: org.eclipse/osgi

  1. boolean isFragment = Util.isFragment(resource);
  2. if (!isFragment && rc.getWirings().containsKey(resource))

代码示例来源:origin: com.github.veithen.cosmos/cosmos-equinox

  1. boolean isFragment = Util.isFragment(resource);
  2. if (!isFragment && rc.getWirings().containsKey(resource))

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.osgi

  1. public Map<Resource, Resource> getHosts()
  2. {
  3. Map<Resource, Resource> hosts = new HashMap<Resource, Resource>();
  4. for (Resource res : m_mandatoryResources)
  5. {
  6. if (res instanceof WrappedResource)
  7. {
  8. res = ((WrappedResource) res).getDeclaredResource();
  9. }
  10. if (!Util.isFragment(res))
  11. {
  12. hosts.put(res, getWrappedHost(res));
  13. }
  14. }
  15. for (Capability cap : m_dependentMap.keySet())
  16. {
  17. Resource res = cap.getResource();
  18. if (res instanceof WrappedResource)
  19. {
  20. res = ((WrappedResource) res).getDeclaredResource();
  21. }
  22. if (!Util.isFragment(res))
  23. {
  24. hosts.put(res, getWrappedHost(res));
  25. }
  26. }
  27. return hosts;
  28. }

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.osgi

  1. public Map<Resource, Resource> getHosts()
  2. {
  3. Map<Resource, Resource> hosts = new HashMap<Resource, Resource>();
  4. for (Resource res : m_mandatoryResources)
  5. {
  6. if (res instanceof WrappedResource)
  7. {
  8. res = ((WrappedResource) res).getDeclaredResource();
  9. }
  10. if (!Util.isFragment(res))
  11. {
  12. hosts.put(res, getWrappedHost(res));
  13. }
  14. }
  15. for (Capability cap : m_dependentMap.keySet())
  16. {
  17. Resource res = cap.getResource();
  18. if (res instanceof WrappedResource)
  19. {
  20. res = ((WrappedResource) res).getDeclaredResource();
  21. }
  22. if (!Util.isFragment(res))
  23. {
  24. hosts.put(res, getWrappedHost(res));
  25. }
  26. }
  27. return hosts;
  28. }

代码示例来源:origin: forge/roaster

  1. private void addHost(Resource res, Map<Resource, Resource> hosts) {
  2. if (res instanceof WrappedResource)
  3. {
  4. res = ((WrappedResource) res).getDeclaredResource();
  5. }
  6. if (!Util.isFragment(res))
  7. {
  8. hosts.put(res, getWrappedHost(res));
  9. } else {
  10. Requirement hostReq = res.getRequirements(HostNamespace.HOST_NAMESPACE).get(0);
  11. Capability hostCap = getFirstCandidate(hostReq);
  12. // If the resource is an already resolved fragment and can not
  13. // be attached to new hosts, there will be no matching host,
  14. // so ignore this resource
  15. if (hostCap != null) {
  16. res = getWrappedHost(hostCap.getResource());
  17. if (res instanceof WrappedResource) {
  18. hosts.put(((WrappedResource) res).getDeclaredResource(), res);
  19. }
  20. }
  21. }
  22. }

代码示例来源:origin: org.eclipse.tycho/org.eclipse.osgi

  1. private void addHost(Resource res, Map<Resource, Resource> hosts) {
  2. if (res instanceof WrappedResource)
  3. {
  4. res = ((WrappedResource) res).getDeclaredResource();
  5. }
  6. if (!Util.isFragment(res))
  7. {
  8. hosts.put(res, getWrappedHost(res));
  9. } else {
  10. Requirement hostReq = res.getRequirements(HostNamespace.HOST_NAMESPACE).get(0);
  11. Capability hostCap = getFirstCandidate(hostReq);
  12. // If the resource is an already resolved fragment and can not
  13. // be attached to new hosts, there will be no matching host,
  14. // so ignore this resource
  15. if (hostCap != null) {
  16. res = getWrappedHost(hostCap.getResource());
  17. if (res instanceof WrappedResource) {
  18. hosts.put(((WrappedResource) res).getDeclaredResource(), res);
  19. }
  20. }
  21. }
  22. }

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

  1. private void addHost(Resource res, Map<Resource, Resource> hosts) {
  2. if (res instanceof WrappedResource)
  3. {
  4. res = ((WrappedResource) res).getDeclaredResource();
  5. }
  6. if (!Util.isFragment(res))
  7. {
  8. hosts.put(res, getWrappedHost(res));
  9. } else {
  10. Requirement hostReq = res.getRequirements(HostNamespace.HOST_NAMESPACE).get(0);
  11. Capability hostCap = getFirstCandidate(hostReq);
  12. // If the resource is an already resolved fragment and can not
  13. // be attached to new hosts, there will be no matching host,
  14. // so ignore this resource
  15. if (hostCap != null) {
  16. res = getWrappedHost(hostCap.getResource());
  17. if (res instanceof WrappedResource) {
  18. hosts.put(((WrappedResource) res).getDeclaredResource(), res);
  19. }
  20. }
  21. }
  22. }

代码示例来源:origin: org.eclipse.platform/org.eclipse.osgi

  1. private void addHost(Resource res, Map<Resource, Resource> hosts) {
  2. if (res instanceof WrappedResource)
  3. {
  4. res = ((WrappedResource) res).getDeclaredResource();
  5. }
  6. if (!Util.isFragment(res))
  7. {
  8. hosts.put(res, getWrappedHost(res));
  9. } else {
  10. Requirement hostReq = res.getRequirements(HostNamespace.HOST_NAMESPACE).get(0);
  11. Capability hostCap = getFirstCandidate(hostReq);
  12. // If the resource is an already resolved fragment and can not
  13. // be attached to new hosts, there will be no matching host,
  14. // so ignore this resource
  15. if (hostCap != null) {
  16. res = getWrappedHost(hostCap.getResource());
  17. if (res instanceof WrappedResource) {
  18. hosts.put(((WrappedResource) res).getDeclaredResource(), res);
  19. }
  20. }
  21. }
  22. }

代码示例来源:origin: biz.aQute.bnd/biz.aQute.resolve

  1. private void addHost(Resource res, Map<Resource, Resource> hosts) {
  2. if (res instanceof WrappedResource)
  3. {
  4. res = ((WrappedResource) res).getDeclaredResource();
  5. }
  6. if (!Util.isFragment(res))
  7. {
  8. hosts.put(res, getWrappedHost(res));
  9. } else {
  10. Requirement hostReq = res.getRequirements(HostNamespace.HOST_NAMESPACE).get(0);
  11. Capability hostCap = getFirstCandidate(hostReq);
  12. // If the resource is an already resolved fragment and can not
  13. // be attached to new hosts, there will be no matching host,
  14. // so ignore this resource
  15. if (hostCap != null) {
  16. res = getWrappedHost(hostCap.getResource());
  17. if (res instanceof WrappedResource) {
  18. hosts.put(((WrappedResource) res).getDeclaredResource(), res);
  19. }
  20. }
  21. }
  22. }

代码示例来源:origin: biz.aQute.bnd/biz.aQute.bnd

  1. private void addHost(Resource res, Map<Resource, Resource> hosts) {
  2. if (res instanceof WrappedResource)
  3. {
  4. res = ((WrappedResource) res).getDeclaredResource();
  5. }
  6. if (!Util.isFragment(res))
  7. {
  8. hosts.put(res, getWrappedHost(res));
  9. } else {
  10. Requirement hostReq = res.getRequirements(HostNamespace.HOST_NAMESPACE).get(0);
  11. Capability hostCap = getFirstCandidate(hostReq);
  12. // If the resource is an already resolved fragment and can not
  13. // be attached to new hosts, there will be no matching host,
  14. // so ignore this resource
  15. if (hostCap != null) {
  16. res = getWrappedHost(hostCap.getResource());
  17. if (res instanceof WrappedResource) {
  18. hosts.put(((WrappedResource) res).getDeclaredResource(), res);
  19. }
  20. }
  21. }
  22. }

代码示例来源:origin: forge/roaster

  1. if (candidates.isEmpty() && !Util.isOptional(requirement))
  2. if (Util.isFragment(resource) && rc.getWirings().containsKey(resource))

代码示例来源:origin: org.eclipse.tycho/org.eclipse.osgi

  1. if (candidates.isEmpty() && !Util.isOptional(requirement))
  2. if (Util.isFragment(resource) && rc.getWirings().containsKey(resource))

代码示例来源:origin: biz.aQute.bnd/biz.aQute.resolve

  1. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))
  2. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))

代码示例来源:origin: org.eclipse.tycho/org.eclipse.osgi

  1. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))
  2. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))

代码示例来源:origin: forge/roaster

  1. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))
  2. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))

代码示例来源:origin: biz.aQute.bnd/biz.aQute.bnd

  1. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))
  2. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))

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

  1. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))
  2. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))

代码示例来源:origin: org.eclipse.platform/org.eclipse.osgi

  1. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))
  2. if (Util.isFragment(resource) || (session.getContext().getWirings().get(resource) == null))

相关文章