Interface ClassesProvider
-
- All Known Implementing Classes:
ClasspathClassesProvider,NullClassesProvider,SimpleClassesProvider
public interface ClassesProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<IdentifiedBytecode>getClass(ClassIdentifier... names)Callback for compiler, which provides, on demand, the dependencies compiler is missing.List<String>getClassPathListing()Warning: may include lambdas and will include inner classes with $notations.
-
-
-
Method Detail
-
getClass
Collection<IdentifiedBytecode> getClass(ClassIdentifier... names)
Callback for compiler, which provides, on demand, the dependencies compiler is missing.- Parameters:
names- names of classes the provider should return- Returns:
- bytecode of all found classes
-
-