|
The NetBeans IDE provides Java developers with all the tools they need
to create professional Java SE applications.
The NetBeans IDE supports development with
JDK 1.1, JDK 1.2, JDK 1.3, JDK 1.4, JDK 5.0, and JDK 6.
Desktop Application Development
Java SE is the programming platform for developers who create
browser applets, command line tools, and GUI applications
targeted for desktop users. Software applications written in Java will
run on Windows, Mac OS, Linux, Solaris and other operating systems.
Javadoc Integration
Use the Auto Comment action to generate Javadoc code for your methods.
Use the Javadoc Analyzer plugin to check and fix existing Javadoc comments.
Java Call Hierarchy
The Java Call Hierarchy view displays a tree representing
the hierarchy of callers and callees of the selected method in a project.
Compile on Save
The Build action has been replaced by the Compile on Save feature:
Now the IDE builds your project automatically and the
run/debug/test actions are immediately available after saving a file.
If you save changes to a method while the debugger is already running
the running application will be automatically reloaded.
Compilation errors inside a method don't stop you from running your program:
The debugger will halt when the program runs into the method in question.
Unit Testing Tools
JUnit 3 and 4 are integrated into the IDE.
You can quickly create, run and re-run unit tests, and display test results.
The editor provides keyboard shortcuts
for fast navigation between the test and the class it is testing.
|