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 89204
Collapse All | Expand All

(-)project/apichanges.xml (+15 lines)
Lines 83-88 Link Here
83
    <!-- ACTUAL CHANGES BEGIN HERE: -->
83
    <!-- ACTUAL CHANGES BEGIN HERE: -->
84
84
85
    <changes>
85
    <changes>
86
    <change id="JavaProjectConstants.SOURCES_TYPE_RESOURCES">
87
        <api name="general"/>
88
        <summary>Add SourceGroup type for resources that are separate from sources</summary>
89
        <version major="1" minor="11"/>
90
        <date day="30" month="1" year="2007"/>
91
        <author login="mkleint"/>
92
        <compatibility addition="yes"/>
93
        <description>
94
            Add a new Sourcegroup type for resources, if these are not put together with Java sources. (For example
95
            Maven based projects put resource files like images, or properties files in different source structures)
96
            Useful for creating new resource files in a project from a 3rd party module.
97
        </description>
98
        <class package="org.netbeans.api.java.project" name="JavaProjectConstants"/>
99
        <issue number="89204"/>
100
    </change>
86
    <change id="ProjectClassPathModifier">
101
    <change id="ProjectClassPathModifier">
87
        <api name="classpath"/>
102
        <api name="classpath"/>
88
        <summary>New ProjectClassPathModifier API/SPI for modification of project's classpath</summary>
103
        <summary>New ProjectClassPathModifier API/SPI for modification of project's classpath</summary>
(-)project/manifest.mf (-1 / +1 lines)
Lines 2-6 Link Here
2
OpenIDE-Module: org.netbeans.modules.java.project/1
2
OpenIDE-Module: org.netbeans.modules.java.project/1
3
OpenIDE-Module-Layer: org/netbeans/modules/java/project/layer.xml
3
OpenIDE-Module-Layer: org/netbeans/modules/java/project/layer.xml
4
OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/java/project/Bundle.properties
4
OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/java/project/Bundle.properties
5
OpenIDE-Module-Specification-Version: 1.10
5
OpenIDE-Module-Specification-Version: 1.11
6
6
(-)project/src/org/netbeans/api/java/project/JavaProjectConstants.java (+7 lines)
Lines 34-39 Link Here
34
    public static final String SOURCES_TYPE_JAVA = "java"; // NOI18N
34
    public static final String SOURCES_TYPE_JAVA = "java"; // NOI18N
35
35
36
    /**
36
    /**
37
     * Package root sources type for resources, if these are not put together with Java sources.
38
     * @see org.netbeans.api.project.Sources
39
     * @since org.netbeans.modules.java.project/1 1.11
40
     */
41
    public static final String SOURCES_TYPE_RESOURCES = "resources"; // NOI18N
42
43
    /**
37
     * Standard artifact type representing a JAR file, presumably
44
     * Standard artifact type representing a JAR file, presumably
38
     * used as a Java library of some kind.
45
     * used as a Java library of some kind.
39
     * @see org.netbeans.api.project.ant.AntArtifact
46
     * @see org.netbeans.api.project.ant.AntArtifact

Return to bug 89204