This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 212694
Collapse All | Expand All

(-)a/api.java/apichanges.xml (+17 lines)
Lines 76-81 Link Here
76
<!-- ACTUAL CHANGES BEGIN HERE: -->
76
<!-- ACTUAL CHANGES BEGIN HERE: -->
77
77
78
<changes>
78
<changes>
79
        <change id="java-classpath-compile-only">
80
            <api name="classpath"/>
81
            <summary>Introducing JavaClassPathConstants.COMPILE_ONLY</summary>
82
            <version major="1" minor="39"/>
83
            <date day="23" month="5" year="2012"/>
84
            <author login="tzezula"/>
85
            <compatibility addition="yes" semantic="compatible" source="compatible" binary="compatible"/>
86
            <description>
87
                <p>
88
                    Added a new <code>COMPILE_ONLY</code> classpath type allowing project types to add
89
                    classpath resources which should be included in the complile classpath but should not
90
                    be inherited by runtime classpath.
91
                </p>
92
            </description>
93
            <class package="org.netbeans.api.java.classpath" name="JavaClassPathConstants" />
94
            <issue number="207717"/>
95
        </change>
79
        <change id="source-javadoc-attacher">
96
        <change id="source-javadoc-attacher">
80
            <api name="queries"/>
97
            <api name="queries"/>
81
            <summary>Added SourceJavadocAttacher to allow clients to attach source (javadoc) roots to binary root</summary>
98
            <summary>Added SourceJavadocAttacher to allow clients to attach source (javadoc) roots to binary root</summary>
(-)a/api.java/manifest.mf (-1 / +1 lines)
Lines 1-6 Link Here
1
Manifest-Version: 1.0
1
Manifest-Version: 1.0
2
OpenIDE-Module: org.netbeans.api.java/1
2
OpenIDE-Module: org.netbeans.api.java/1
3
OpenIDE-Module-Specification-Version: 1.38
3
OpenIDE-Module-Specification-Version: 1.39
4
OpenIDE-Module-Localizing-Bundle: org/netbeans/api/java/queries/Bundle.properties
4
OpenIDE-Module-Localizing-Bundle: org/netbeans/api/java/queries/Bundle.properties
5
AutoUpdate-Show-In-Client: false
5
AutoUpdate-Show-In-Client: false
6
6
(-)a/api.java/src/org/netbeans/api/java/classpath/JavaClassPathConstants.java (+6 lines)
Lines 61-64 Link Here
61
     */
61
     */
62
    public static final String PROCESSOR_PATH = "classpath/processor";
62
    public static final String PROCESSOR_PATH = "classpath/processor";
63
    
63
    
64
    /**
65
     * A part of the compilation classpath which is not included into runtime classpath.
66
     * @since 1.39
67
     */
68
    public static final String COMPILE_ONLY = "classpath/compile_only";
69
    
64
}
70
}

Return to bug 212694