Index: apichanges.xml =================================================================== RCS file: /cvs/java/project/apichanges.xml,v retrieving revision 1.8 diff -u -r1.8 apichanges.xml --- apichanges.xml 3 Apr 2005 01:41:48 -0000 1.8 +++ apichanges.xml 20 Apr 2005 15:20:32 -0000 @@ -77,7 +77,22 @@ - + + + Added artifact type representing folder + + + + + +

+ The freeform project may have as its output a folder rather than a jar archive. + The JavaProjectConstants was extended by the ARTIFACT_TYPE_FOLDER constant to represent such an output. +

+
+ + +
Added a new factory method for creating the name/package chooser wizard panel into the templates SPI. Index: src/org/netbeans/api/java/project/JavaProjectConstants.java =================================================================== RCS file: /cvs/java/project/src/org/netbeans/api/java/project/JavaProjectConstants.java,v retrieving revision 1.5 diff -u -r1.5 JavaProjectConstants.java --- src/org/netbeans/api/java/project/JavaProjectConstants.java 18 Jun 2004 03:00:14 -0000 1.5 +++ src/org/netbeans/api/java/project/JavaProjectConstants.java 20 Apr 2005 15:20:32 -0000 @@ -33,6 +33,15 @@ * @see org.netbeans.api.project.ant.AntArtifact */ public static final String ARTIFACT_TYPE_JAR = "jar"; // NOI18N + + + /** + * Standard artifact type representing a folder containing classes, presumably + * used as a Java library of some kind. + * @see org.netbeans.api.project.ant.AntArtifact + * @since org.netbeans.modules.java.project/1 1.4 + */ + public static final String ARTIFACT_TYPE_FOLDER = "folder"; //NOI18N /** * Standard command for running Javadoc on a project.