Java Reference
In-Depth Information
Java Documentation (continued)
Figure 9.7
Documentation page for the Television class.
In Lab 9.2, you will practice using javadoc comments within a class and running the
javadoc tool.
For the javadoc tool to work successfully, your source code must be saved
in a directory structure that matches the package name of the classes (the
same rule that applies for bytecode). For example, a class named
Television in an electronics package must be saved in a file named
.\electronics\Television.java.
Overview of the Java Collections Framework
The J2SE contains a collection of classes and interfaces referred to as a collec-
tions framework. The goal of the collections framework is to provide a common
architecture for working with collections, reducing the amount of code that
developers need to write by providing the basic data structures. Data struc-
tures fit into three basic categories:
Search WWH ::




Custom Search