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

(-)apichanges.xml (-1 / +16 lines)
Lines 77-83 Link Here
77
    <!-- ACTUAL CHANGES BEGIN HERE: -->
77
    <!-- ACTUAL CHANGES BEGIN HERE: -->
78
78
79
    <changes>
79
    <changes>
80
    
80
        <change id="JavaProjectConstants">
81
            <api name="general"/>
82
            <summary>Added artifact type representing folder</summary>
83
            <version major="1" minor="4"/>
84
            <date day="20" month="4" year="2005"/>
85
            <author login="tzezula"/>
86
            <compatibility addition="yes"/>
87
            <description>
88
                <p>
89
                The freeform project may have as its output a folder rather than a jar archive.
90
                The JavaProjectConstants was extended by the ARTIFACT_TYPE_FOLDER constant to represent such an output.
91
                </p>
92
            </description>
93
            <class package="org.netbeans.api.java.project" name="JavaProjectConstants"/>
94
            <issue number="57733"/>
95
        </change>
81
        <change id="JavaTemplates.factory.package-required">
96
        <change id="JavaTemplates.factory.package-required">
82
            <api name="ui"/>
97
            <api name="ui"/>
83
            <summary>Added a new factory method for creating the name/package chooser wizard panel into the templates SPI.</summary>
98
            <summary>Added a new factory method for creating the name/package chooser wizard panel into the templates SPI.</summary>
(-)src/org/netbeans/api/java/project/JavaProjectConstants.java (+9 lines)
Lines 33-38 Link Here
33
     * @see org.netbeans.api.project.ant.AntArtifact
33
     * @see org.netbeans.api.project.ant.AntArtifact
34
     */
34
     */
35
    public static final String ARTIFACT_TYPE_JAR = "jar"; // NOI18N
35
    public static final String ARTIFACT_TYPE_JAR = "jar"; // NOI18N
36
    
37
    
38
    /**
39
     * Standard artifact type representing a folder containing classes, presumably
40
     * used as a Java library of some kind.
41
     * @see org.netbeans.api.project.ant.AntArtifact
42
     * @since org.netbeans.modules.java.project/1 1.4
43
     */
44
    public static final String ARTIFACT_TYPE_FOLDER = "folder"; //NOI18N
36
45
37
    /**
46
    /**
38
     * Standard command for running Javadoc on a project.
47
     * Standard command for running Javadoc on a project.

Return to bug 58107