Java View all facts Glossary Help |
syntactic unit > scoping unit > package > java.awt.swing |
java.awt.swing | ||||
subject | fact |
java.awt.swing | has been renamed to javax.swing in Swing 1.1 (for JDK 1.1) and for the core package in JDK 1.2 | |
is operating-system independent; a program using it will run under any operating system without changes | ||
is a subtopic of Example Packages | ||
is a subtopic of Graphical User Interfaces | ||
is an instance of package | ||
was introduced in Java 2 | ||
package | can be imported by using the import statement | |
contains 0 or more classes and 0 or more interfaces | ||
defines a name space | ||
groups classes or interfaces by function | ||
has a name | ||
has purpose
| ||
has purpose to group together related classes into a subsystem | ||
is specified by a file that begins with a package statement | ||
is stored as a set of class files in a directory | ||
see also package name | ||
to create you put a class in it or put an interface in it by putting a package statement at the top of the source file in which the class or interface is defined | ||
to import you use the import statement with the asterisk wildcard character | ||
syntactic unit | has syntax rule bold = mandatory |
Next package: java.io Up: package Previous package: java.awt.event