org.netbeans.spi.java.queries |
Implementations of Java-related queries.
|
Java Source File Name | Type | Comment |
AccessibilityQueryImplementation.java | Interface | Permits providers to mark certain Java packages as being inaccessible to
outside code despite possibly containing public classes.
A default implementation is registered by the
org.netbeans.modules.java.project module which looks up the
project corresponding to the file (if any) and checks whether that
project has an implementation of this interface in its lookup. |
BinaryForSourceQueryImplementation.java | Interface | Information about where binaries (classfiles) corresponding to
Java sources can be found, this is intended to be the inverse of
the SourceForBinaryQueryImplementation. |
JavadocForBinaryQueryImplementation.java | Interface | A query to find Javadoc root for the given classpath root.
A default implementation is registered by the
org.netbeans.modules.java.project module which looks up the
project corresponding to the binary file and checks whether that
project has an implementation of this interface in its lookup. |
MultipleRootsUnitTestForSourceQueryImplementation.java | Interface | Query to find Java package roots of unit tests for Java package root of
sources and vice versa.
A default implementation is registered by the
org.netbeans.modules.java.project module which looks up the
project corresponding to the binary file and checks whether that
project has an implementation of this interface in its lookup. |
SourceForBinaryQueryImplementation.java | Interface | Information about where Java sources corresponding to binaries
(classfiles) can be found.
A default implementation is registered by the
org.netbeans.modules.java.project module which looks up the
project corresponding to the file (if any; jar -protocol URLs
actually check the owner of the JAR file itself) and checks whether that
project has an implementation of this interface in its lookup. |
SourceLevelQueryImplementation.java | Interface | Permits providers to return specification source level of Java source file.
A default implementation is registered by the
org.netbeans.modules.java.project module which looks up the
project corresponding to the file (if any) and checks whether that
project has an implementation of this interface in its lookup. |
UnitTestForSourceQueryImplementation.java | Interface | Query to find Java package root of unit tests for Java package root of
sources and vice versa.
A default implementation is registered by the
org.netbeans.modules.java.project module which looks up the
project corresponding to the binary file and checks whether that
project has an implementation of this interface in its lookup. |