org.netbeans.spi.java.project.support
Class ExtraSourceJavadocSupport
java.lang.Object
org.netbeans.spi.java.project.support.ExtraSourceJavadocSupport
public class ExtraSourceJavadocSupport
- extends Object
Utility factory class for ant-based project implementors, the created instances, once
put into project's lookup, make sure the javadoc and source references in project properties
are correctly recognized and used by the java infrastructure.
The format of project properties used is as follows:
- file.reference.__jarName__ - the binary file reference used to point to files on project classpath.
- javadoc.reference.__jarName__ - the file reference pointing to javadoc for file.reference.__jarName__
- source.reference.__jarName__ - the file reference pointing to sources for file.reference.__jarName__
- Since:
- org.netbeans.modules.java.project 1.14
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ExtraSourceJavadocSupport
public ExtraSourceJavadocSupport()
createExtraSourceQueryImplementation
public static SourceForBinaryQueryImplementation createExtraSourceQueryImplementation(Project project,
AntProjectHelper helper,
PropertyEvaluator eval)
- Create project's SourceForBinaryQueryImplementation object for handling
property based sources
- Parameters:
helper
- project's AntProjectHelper instanceeval
- project's PropertyEvaluator instance
- Returns:
- object to use in project's lookup.
createExtraJavadocQueryImplementation
public static JavadocForBinaryQueryImplementation createExtraJavadocQueryImplementation(Project project,
AntProjectHelper helper,
PropertyEvaluator eval)
- Create project's JavadocForBinaryQueryImplementation object for handling
property based javadoc
- Parameters:
helper
- project's AntProjectHelper instanceeval
- project's PropertyEvaluator instance
- Returns:
- object to use in project's lookup.