The sources in the Swing project address the all-Java Swing user interface components.
In this tutorial, we examine
the Swing project in the IDE and learn what we can do with it.
Building the Swing Sources
To build the Swing sources, right-click the Swing project in the
Projects window and choose Build Project. The IDE runs the Ant script for the project and shows
output in the Output window.
To view the build results, go to the Favorites window (Ctrl-3)
and browse to the "j2se" folder. Once you have added the folder,
you can see the newly created "build" and "dist" folders,
the latter containing your build output, as shown in the following image:

Generating Swing Javadoc
When you want to access Swing programmatically,
you can do so via the Swing APIs. Before you do so,
you can generate the Swing Javadoc. Right-click the
Swing project and choose Generate Javadoc for Project.
The IDE's browser appears, displaying the generated Javadoc:

In the Favorites window (Ctrl-3), you can browse to
the Javadoc files, which are generated to the
j2se/build/${platform}/javadoc/swing
folder, as shown below:
