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.

Bug 46354

Summary: Support multiple source directories in the primary compilation unit of a j2seproject
Product: java Reporter: vbrabant <vbrabant>
Component: ProjectAssignee: Tomas Zezula <tzezula>
Status: RESOLVED FIXED    
Severity: blocker CC: jglick, pjiricka, rnajman
Priority: P3 Keywords: API
Version: 4.x   
Hardware: All   
OS: All   
URL: http://www.netbeans.org/servlets/ReadMsg?msgId=784437&listName=nbusers
Issue Type: ENHANCEMENT Exception Reporter:
Bug Depends on: 51523    
Bug Blocks: 41537, 44449, 49639    

Description vbrabant 2004-07-20 20:57:08 UTC
When user create a project, it would be possible
to have more than one source directory in that
project.
Comment 1 Jesse Glick 2004-07-20 21:20:55 UTC
Rephrasing for clarity. Currently a j2seproject has a ${src.dir} and a
${test.src.dir}. Request is for ${src.dir} to become a path with
possibly multiple elements, built in parallel to the same
${build.classes.dir}, UI for this TBD.
Comment 2 tboerkel 2004-07-21 11:23:12 UTC
IMHO, this has to be done for NB 4.0.
Comment 3 Peter Nabbefeld 2004-07-21 11:55:10 UTC
IMHO, this should be possible to do with project dependencies. Just
using several source paths will lead to badly structured projects and
will make saving data a hell.
Comment 4 tboerkel 2004-07-21 12:09:36 UTC
I don't think so. AFAIK, making a project dependency is only possible,
if that other project has a jar file.
Comment 5 gugrim 2004-07-21 12:14:14 UTC
Also, using project dependencies instead of multiple source roots in
not an alternative for projects that has a primary source root for
manually produced and version controlled sources, and another source
root for XDoclet- or otherwise generated sources. This other source
root need to be in the meta data repository since you'll want code
completion etc, and by subtasking -post-clean you can also ensure that
is is wiped when the project is cleaned.
Comment 6 Jesse Glick 2004-07-21 19:04:25 UTC
All comments here are off target, I think. Please reread the rephrased
description of this RFE and avoid discussing unrelated topics in this
issue, as it will just clutter the issue text.

To Thomas #1: it is much too late for 4.0 AFAIK. We are long past
feature freeze.

To epdv: certainly for multiple source roots in different compilation
units, you should use project dependencies. This issue is about
multiple source roots in one compilation unit.

To Thomas #2: you can make a dependency between any pair of
j2seproject's easily. If you don't happen to want to distribute the
JAR file from some subproject, don't. That has nothing to do with
anything.

To Gunnar: the intended solution of this RFE would be inappropriate
for the case you describe, which very likely involves multiple
compilation units. For such a situation, you should use a freeform
project. This issue is about j2seproject's only.
Comment 7 tboerkel 2004-07-21 21:15:32 UTC
Jesse, I do not even let Ant create a jar file for that sub project,
because it's not necessary and delays the build process. 
But the GUI for adding a dependency (Project Properties, Compile
Classpath) seems to insist that there is a jar file.
How else can I add a dependency? And what does that really mean? Does
it extend the CLASSPATH of the current project, adding all CLASSPATHs
entries of the sub project?
Comment 8 tboerkel 2004-07-21 21:23:16 UTC
About feature freeze in general:
I have tried using NB 4.0 as early as possible (when it was usable).
It's not even beta, yet. How should the community be able to give
feedback, when there is already feature freeze so early? 
Many concerns about projects 4.0 are being talked about in the mailing
list. People are complaining heavily.
If it is going to be released with its current feature set, then many
many NB 3.6 users will be disappointed and possibly run away. Users
from other IDEs will not convert to NB 4.0.
Projects 4.0 looks unfinished (because it lacks important features)
and that does not make sense in a major release.
Comment 9 Jesse Glick 2004-07-21 21:58:40 UTC
Re. adding a subproject without making its JAR file: the GUI just
requires you to select the subproject when changing the superproject's
classpath. That is enough to set up the build-time dependency. At that
point you should be able to

1. Override the jar target in the subproject to do nothing (but leave
its deps so it does the compilation).

2. Change the superproject's project.properties so that where you had e.g.

javac.classpath=${reference.mylib.jar}

make it

javac.classpath=${project.mylib}/build/classes

That should be all you need. Classpath entries of the subproject are
not added automatically to the superproject but you can add them manually.

Or, again, you can use a freeform project and set it up exactly how
you like it.

Re. feature freeze: completely off topic, please do not use Issuezilla
for this purpose. Use nbdiscuss or nbdev.
Comment 10 Jesse Glick 2004-08-14 17:32:10 UTC
*** Issue 47206 has been marked as a duplicate of this issue. ***
Comment 11 Jesse Glick 2004-08-14 17:32:38 UTC
*** Issue 47205 has been marked as a duplicate of this issue. ***
Comment 12 David Konecny 2004-10-11 09:42:20 UTC
*** Issue 50197 has been marked as a duplicate of this issue. ***
Comment 13 Tomas Zezula 2004-11-02 16:56:14 UTC
*** Issue 51083 has been marked as a duplicate of this issue. ***
Comment 14 Tomas Zezula 2004-11-02 16:58:46 UTC
*** Issue 51083 has been marked as a duplicate of this issue. ***
Comment 15 Petr Hrebejk 2004-11-04 10:55:12 UTC
*** Issue 51142 has been marked as a duplicate of this issue. ***
Comment 16 Tomas Zezula 2004-11-09 09:08:29 UTC
No UI yet.

Checking in
api/src/org/netbeans/api/java/queries/UnitTestForSourceQuery.java;
/cvs/java/api/src/org/netbeans/api/java/queries/UnitTestForSourceQuery.java,v
 <--  UnitTestForSourceQuery.java
new revision: 1.4; previous revision: 1.3
done
Processing log script arguments...
More commits to come...
RCS file:
/cvs/java/api/src/org/netbeans/spi/java/queries/MultipleRootsUnitTestForSourceQueryImplementation.java,v
done
Checking in
api/src/org/netbeans/spi/java/queries/MultipleRootsUnitTestForSourceQueryImplementation.java;
/cvs/java/api/src/org/netbeans/spi/java/queries/MultipleRootsUnitTestForSourceQueryImplementation.java,v
 <--  MultipleRootsUnitTestForSourceQueryImplementation.java
initial revision: 1.1
done
Checking in
api/src/org/netbeans/spi/java/queries/UnitTestForSourceQueryImplementation.java;
/cvs/java/api/src/org/netbeans/spi/java/queries/UnitTestForSourceQueryImplementation.java,v
 <--  UnitTestForSourceQueryImplementation.java
new revision: 1.4; previous revision: 1.3
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEActionProvider.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEActionProvider.java,v
 <--  J2SEActionProvider.java
new revision: 1.31; previous revision: 1.30
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEAntLogger.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEAntLogger.java,v
 <--  J2SEAntLogger.java
new revision: 1.6; previous revision: 1.5
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEFileBuiltQuery.java,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEFileBuiltQuery.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEFileBuiltQuery.java,v
 <--  J2SEFileBuiltQuery.java
initial revision: 1.1
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProject.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProject.java,v
 <--  J2SEProject.java
new revision: 1.39; previous revision: 1.38
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectGenerator.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectGenerator.java,v
 <--  J2SEProjectGenerator.java
new revision: 1.29; previous revision: 1.28
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectType.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectType.java,v
 <--  J2SEProjectType.java
new revision: 1.4; previous revision: 1.3
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectUtil.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectUtil.java,v
 <--  J2SEProjectUtil.java
new revision: 1.9; previous revision: 1.8
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java,v
 <--  J2SESources.java
initial revision: 1.1
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/SourceRoots.java,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/SourceRoots.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/SourceRoots.java,v
 <--  SourceRoots.java
initial revision: 1.1
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/classpath/ClassPathProviderImpl.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/classpath/ClassPathProviderImpl.java,v
 <--  ClassPathProviderImpl.java
new revision: 1.13; previous revision: 1.12
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/classpath/SourcePathImplementation.java,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/classpath/SourcePathImplementation.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/classpath/SourcePathImplementation.java,v
 <--  SourcePathImplementation.java
initial revision: 1.1
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/queries/CompiledSourceForBinaryQuery.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/queries/CompiledSourceForBinaryQuery.java,v
 <--  CompiledSourceForBinaryQuery.java
new revision: 1.10; previous revision: 1.9
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/queries/UnitTestForSourceQueryImpl.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/queries/UnitTestForSourceQueryImpl.java,v
 <--  UnitTestForSourceQueryImpl.java
new revision: 1.6; previous revision: 1.5
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl,v
 <--  build-impl.xsl
new revision: 1.40; previous revision: 1.39
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build.xsl;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build.xsl,v
 <--  build.xsl
new revision: 1.8; previous revision: 1.7
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/resources/j2se-project2.xsd,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/resources/j2se-project2.xsd;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/resources/j2se-project2.xsd,v
 <--  j2se-project2.xsd
initial revision: 1.1
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/CustomizerRun.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/CustomizerRun.java,v
 <--  CustomizerRun.java
new revision: 1.16; previous revision: 1.15
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/J2SEProjectProperties.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/J2SEProjectProperties.java,v
 <--  J2SEProjectProperties.java
new revision: 1.28; previous revision: 1.27
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/MainClassChooser.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/MainClassChooser.java,v
 <--  MainClassChooser.java
new revision: 1.26; previous revision: 1.25
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/MainClassWarning.form;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/MainClassWarning.form,v
 <--  MainClassWarning.form
new revision: 1.6; previous revision: 1.5
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/MainClassWarning.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/MainClassWarning.java,v
 <--  MainClassWarning.java
new revision: 1.10; previous revision: 1.9
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/VisualMainClassSupport.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/VisualMainClassSupport.java,v
 <--  VisualMainClassSupport.java
new revision: 1.6; previous revision: 1.5
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/J2SEActionProviderTest.java;
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/J2SEActionProviderTest.java,v
 <--  J2SEActionProviderTest.java
new revision: 1.7; previous revision: 1.6
done
RCS file:
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/SourceRootsTest.java,v
done
Checking in
j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/SourceRootsTest.java;
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/SourceRootsTest.java,v
 <--  SourceRootsTest.java
initial revision: 1.1
done
Processing log script arguments...
More commits to come...
RCS file:
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/classpath/SourcePathImplementationTest.java,v
done
Checking in
j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/classpath/SourcePathImplementationTest.java;
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/classpath/SourcePathImplementationTest.java,v
 <--  SourcePathImplementationTest.java
initial revision: 1.1
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/queries/CompiledSourceForBinaryQueryTest.java;
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/queries/CompiledSourceForBinaryQueryTest.java,v
 <--  CompiledSourceForBinaryQueryTest.java
new revision: 1.2; previous revision: 1.1
done
Checking in
j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/queries/UnitTestForSourceQueryImplTest.java;
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/queries/UnitTestForSourceQueryImplTest.java,v
 <--  UnitTestForSourceQueryImplTest.java
new revision: 1.6; previous revision: 1.5
done
Processing log script arguments...
More commits to come...
RCS file:
/cvs/java/project/src/META-INF/services/org.netbeans.spi.java.queries.MultipleRootsUnitTestForSourceQueryImplementation,v
done
Checking in
project/src/META-INF/services/org.netbeans.spi.java.queries.MultipleRootsUnitTestForSourceQueryImplementation;
/cvs/java/project/src/META-INF/services/org.netbeans.spi.java.queries.MultipleRootsUnitTestForSourceQueryImplementation,v
 <-- 
org.netbeans.spi.java.queries.MultipleRootsUnitTestForSourceQueryImplementation
initial revision: 1.1
done
Processing log script arguments...
More commits to come...
Checking in
project/src/org/netbeans/modules/java/project/UnitTestForSourceQueryImpl.java;
/cvs/java/project/src/org/netbeans/modules/java/project/UnitTestForSourceQueryImpl.java,v
 <--  UnitTestForSourceQueryImpl.java
new revision: 1.3; previous revision: 1.2
done
Comment 17 wqtnetbeans 2004-11-10 06:35:48 UTC
Sorry if this was answered before: Is this enhancement for j2se
projects only? I believe j2ee projects are more in need of this
enhancement. Should there be a seperate issue filed for j2ee multi-src
support?

Thanks,
Qingtian
Comment 18 Tomas Zezula 2004-11-10 08:53:12 UTC
I don't know if the web team is going to do it.
It would be best to fill a new request for enhacement to web/j2ee module.
Comment 19 Petr Jiricka 2004-11-10 13:16:48 UTC
Yes, this must be done for web module and EJB module projects too. It
is unacceptable to have inconsistent behavior between the major
project types. Tomas, is this something we could just reuse from the
Java project? Would it be better if we waited until this is completed
and then took the code? We will need some assistance in this area. Thanks.
Comment 20 jayantbsai 2004-11-10 18:45:17 UTC
The behaviour should be to be able to add additional source paths
irrespective of whether j2se or other project.
Comment 21 vbeffa 2004-11-10 19:37:11 UTC
I would like to see this feature for J2EE projects as well. I posted
some detailed comments about this at
http://www.netbeans.org/servlets/ReadMsg?msgId=857417&listName=nbusers.
Comment 22 Jesse Glick 2004-11-10 20:50:59 UTC
Some responses: This issue is about j2seproject's and j2seproject's
only. It is not possible to "just add it" for all project types. The
code probably cannot be copied as is from j2seproject into any other
project type, though other project types could glean ideas from the
implementation in j2seproject. If you want multiple source roots for
other project types such as J2EE please file that separately; no need
to post any comments about it in this issue.
Comment 23 wqtnetbeans 2004-11-11 01:03:13 UTC
Thanks! I filed a separate request

http://www.netbeans.org/issues/show_bug.cgi?id=51399

Please vote if it sounds sensible.

Comment 24 Tomas Zezula 2004-11-15 15:28:46 UTC
Checking in api/doc/changes/apichanges.xml;
/cvs/java/api/doc/changes/apichanges.xml,v  <--  apichanges.xml
new revision: 1.11; previous revision: 1.10
done
Processing log script arguments...
More commits to come...
Checking in
api/src/org/netbeans/api/java/queries/UnitTestForSourceQuery.java;
/cvs/java/api/src/org/netbeans/api/java/queries/UnitTestForSourceQuery.java,v
 <--  UnitTestForSourceQuery.java
new revision: 1.6; previous revision: 1.5
done
Processing log script arguments...
More commits to come...
Checking in
api/src/org/netbeans/spi/java/queries/MultipleRootsUnitTestForSourceQueryImplementation.java;
/cvs/java/api/src/org/netbeans/spi/java/queries/MultipleRootsUnitTestForSourceQueryImplementation.java,v
 <--  MultipleRootsUnitTestForSourceQueryImplementation.java
new revision: 1.3; previous revision: 1.2
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProject.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProject.java,v
 <--  J2SEProject.java
new revision: 1.41; previous revision: 1.40
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectGenerator.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectGenerator.java,v
 <--  J2SEProjectGenerator.java
new revision: 1.31; previous revision: 1.30
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java,v
 <--  J2SESources.java
new revision: 1.3; previous revision: 1.2
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/SourceRoots.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/SourceRoots.java,v
 <--  SourceRoots.java
new revision: 1.3; previous revision: 1.2
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/resources/build-impl.xsl,v
 <--  build-impl.xsl
new revision: 1.45; previous revision: 1.44
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/resources/j2se-project2.xsd;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/resources/j2se-project2.xsd,v
 <--  j2se-project2.xsd
new revision: 1.3; previous revision: 1.2
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/J2SEPhysicalViewProvider.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/J2SEPhysicalViewProvider.java,v
 <--  J2SEPhysicalViewProvider.java
new revision: 1.32; previous revision: 1.31
done
Comment 25 Tomas Zezula 2004-11-17 13:46:04 UTC
Changed the new J2SEProject from existing sources wizard.
Changed the names of the roots in the logical view.
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectGenerator.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProjectGenerator.java,v
 <--  J2SEProjectGenerator.java
new revision: 1.32; previous revision: 1.31
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java,v
 <--  J2SESources.java
new revision: 1.4; previous revision: 1.3
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/Bundle.properties;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/Bundle.properties,v
 <--  Bundle.properties
new revision: 1.38; previous revision: 1.37
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/FolderList.form,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/FolderList.form;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/FolderList.form,v
 <--  FolderList.form
initial revision: 1.1
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/FolderList.java,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/FolderList.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/FolderList.java,v
 <--  FolderList.java
initial revision: 1.1
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/NewJ2SEProjectWizardIterator.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/NewJ2SEProjectWizardIterator.java,v
 <--  NewJ2SEProjectWizardIterator.java
new revision: 1.26; previous revision: 1.25
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelConfigureProjectVisual.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelConfigureProjectVisual.java,v
 <--  PanelConfigureProjectVisual.java
new revision: 1.15; previous revision: 1.14
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelProjectLocationExtSrc.form,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelProjectLocationExtSrc.form;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelProjectLocationExtSrc.form,v
 <--  PanelProjectLocationExtSrc.form
initial revision: 1.1
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelProjectLocationExtSrc.java,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelProjectLocationExtSrc.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelProjectLocationExtSrc.java,v
 <--  PanelProjectLocationExtSrc.java
initial revision: 1.1
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelSourceFolders.form;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelSourceFolders.form,v
 <--  PanelSourceFolders.form
new revision: 1.11; previous revision: 1.10
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelSourceFolders.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelSourceFolders.java,v
 <--  PanelSourceFolders.java
new revision: 1.31; previous revision: 1.30
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/J2SEProjectGeneratorTest.java;
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/J2SEProjectGeneratorTest.java,v
 <--  J2SEProjectGeneratorTest.java
new revision: 1.3; previous revision: 1.2
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelSourceFoldersTest.java;
/cvs/java/j2seproject/test/unit/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelSourceFoldersTest.java,v
 <--  PanelSourceFoldersTest.java
new revision: 1.2; previous revision: 1.1
done
Comment 26 Tomas Zezula 2004-11-23 15:38:12 UTC
Project Customizer
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProject.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SEProject.java,v
 <--  J2SEProject.java
new revision: 1.42; previous revision: 1.41
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/J2SESources.java,v
 <--  J2SESources.java
new revision: 1.5; previous revision: 1.4
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/SourceRoots.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/SourceRoots.java,v
 <--  SourceRoots.java
new revision: 1.4; previous revision: 1.3
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/classpath/J2SEProjectClassPathExtender.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/classpath/J2SEProjectClassPathExtender.java,v
 <--  J2SEProjectClassPathExtender.java
new revision: 1.4; previous revision: 1.3
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/FoldersListSettings.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/FoldersListSettings.java,v
 <--  FoldersListSettings.java
new revision: 1.9; previous revision: 1.8
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/Bundle.properties;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/Bundle.properties,v
 <--  Bundle.properties
new revision: 1.39; previous revision: 1.38
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/CustomizerSources.form,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/CustomizerSources.form;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/CustomizerSources.form,v
 <--  CustomizerSources.form
initial revision: 1.1
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/CustomizerSources.java,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/CustomizerSources.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/CustomizerSources.java,v
 <--  CustomizerSources.java
initial revision: 1.1
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/J2SECustomizer.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/J2SECustomizer.java,v
 <--  J2SECustomizer.java
new revision: 1.15; previous revision: 1.14
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/J2SEProjectProperties.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/J2SEProjectProperties.java,v
 <--  J2SEProjectProperties.java
new revision: 1.29; previous revision: 1.28
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/VisualPropertySupport.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/VisualPropertySupport.java,v
 <--  VisualPropertySupport.java
new revision: 1.9; previous revision: 1.8
done
RCS file:
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/VisualSourceRootsSupport.java,v
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/VisualSourceRootsSupport.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/customizer/VisualSourceRootsSupport.java,v
 <--  VisualSourceRootsSupport.java
initial revision: 1.1
done
Processing log script arguments...
More commits to come...
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/FolderList.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/FolderList.java,v
 <--  FolderList.java
new revision: 1.2; previous revision: 1.1
done
Checking in
j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelSourceFolders.java;
/cvs/java/j2seproject/src/org/netbeans/modules/java/j2seproject/ui/wizards/PanelSourceFolders.java,v
 <--  PanelSourceFolders.java
new revision: 1.32; previous revision: 1.31
done
Comment 27 Tomas Zezula 2004-11-23 16:04:04 UTC
Fixed.
Comment 28 vbrabant 2004-11-23 20:08:31 UTC
I would like to know if it will be available for 4.0 or 4.1.
The reason I am asking is that Target Milestone is set on Future.
Another problem I have is the following:
How can it be fixed, if it depends of issue 51151 that is always open ?
Comment 29 Tomas Zezula 2004-11-24 09:45:48 UTC
Set correct target milestone.
Removed dependency on the issue #51151 since the API changes had its
own review - issue #51523.
Comment 30 Jan Chalupa 2004-12-02 12:26:11 UTC
*** Issue 51851 has been marked as a duplicate of this issue. ***