Package org.eclipse.aether.impl.scope
Interface BuildScopeSource
-
- All Known Implementing Classes:
BuildScopeMatrixSource
public interface BuildScopeSource
Build scope source.- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<BuildPath>allBuildPaths()Returns all build paths this source has.java.util.Collection<ProjectPath>allProjectPaths()Returns all project paths this source has.java.util.Collection<BuildScope>query(java.util.Collection<BuildScopeQuery> queries)Processes all queries and returns all build scopes that query selected.
-
-
-
Method Detail
-
allProjectPaths
java.util.Collection<ProjectPath> allProjectPaths()
Returns all project paths this source has.
-
allBuildPaths
java.util.Collection<BuildPath> allBuildPaths()
Returns all build paths this source has.
-
query
java.util.Collection<BuildScope> query(java.util.Collection<BuildScopeQuery> queries)
Processes all queries and returns all build scopes that query selected.
-
-