Package aQute.library.capreq.FilterParser

Examples of aQute.library.capreq.FilterParser.Expression.query()


  // @Override
  public Set<ResourceDescriptor> findResources(org.osgi.resource.Requirement requirement, boolean includeDependencies)
      throws Exception {
    FilterParser fp = new FilterParser();
    Expression expression = fp.parse(requirement.getDirectives().get("filter"));
    String query = expression.query();
   
    if ( query == null) {
      return Collections.emptySet();
    }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.