Package | Description |
---|---|
java.applet |
Provides the classes necessary to create an applet and the classes an applet
uses to communicate with its applet context.
|
java.awt |
Contains all of the classes for creating user
interfaces and for painting graphics and images.
|
javax.accessibility |
Defines a contract between user-interface components and an assistive technology
that provides access to those components.
|
javax.swing |
Provides a set of "lightweight"
(all-Java language) components that,
to the maximum degree possible, work the same on all platforms.
|
javax.swing.colorchooser |
Contains classes and interfaces used by the
JColorChooser
component. |
javax.swing.plaf |
Provides one interface and many abstract classes that
Swing uses to provide its pluggable look-and-feel capabilities.
|
javax.swing.plaf.basic |
Provides user interface objects built according to the
Basic look and feel.
|
javax.swing.plaf.metal |
Provides user interface objects built according to
the Java look and feel (once codenamed Metal),
which is the default look and feel.
|
javax.swing.plaf.multi |
Provides user interface objects that combine two or more look and feels.
|
javax.swing.table |
Provides classes and interfaces for dealing with
javax.swing.JTable . |
javax.swing.text |
Provides classes and interfaces that deal with editable
and noneditable text components.
|
javax.swing.text.html |
Provides the class
HTMLEditorKit and supporting classes
for creating HTML text editors. |
javax.swing.tree |
Provides classes and interfaces for dealing with
javax.swing.JTree . |
Modifier and Type | Class | Description |
---|---|---|
class |
Applet
An applet is a small program that is intended not to be run on
its own, but rather to be embedded inside another application.
|
Modifier and Type | Class | Description |
---|---|---|
class |
Button
This class creates a labeled button.
|
|
class |
Canvas
A
Canvas component represents a blank rectangular
area of the screen onto which the application can draw or from
which the application can trap input events from the user. |
|
class |
Checkbox
A check box is a graphical component that can be in either an
"on" (
true ) or "off" (false ) state. |
|
class |
CheckboxMenuItem
This class represents a check box that can be included in a menu.
|
|
class |
Choice
The
Choice class presents a pop-up menu of choices. |
|
class |
Dialog
A Dialog is a top-level window with a title and a border
that is typically used to take some form of input from the user.
|
|
class |
FileDialog
The
FileDialog class displays a dialog window
from which the user can select a file. |
|
class |
Frame
A
Frame is a top-level window with a title and a border. |
|
class |
Label
A
Label object is a component for placing text in a
container. |
|
class |
List
The
List component presents the user with a
scrolling list of text items. |
|
protected class |
List.AccessibleAWTList.AccessibleAWTListChild
This class implements accessibility support for
List children.
|
|
class |
Menu
A
Menu object is a pull-down menu component
that is deployed from a menu bar. |
|
class |
MenuBar
The
MenuBar class encapsulates the platform's
concept of a menu bar bound to a frame. |
|
class |
MenuItem
All items in a menu must belong to the class
MenuItem , or one of its subclasses. |
|
class |
Panel
Panel is the simplest container class. |
|
class |
PopupMenu
A class that implements a menu which can be dynamically popped up
at a specified position within a component.
|
|
class |
Scrollbar
The
Scrollbar class embodies a scroll bar, a
familiar user-interface object. |
|
class |
ScrollPane
A container class which implements automatic horizontal and/or
vertical scrolling for a single child component.
|
|
class |
TextArea
A
TextArea object is a multi-line region
that displays text. |
|
class |
TextComponent
The
TextComponent class is the superclass of
any component that allows the editing of some text. |
|
class |
TextField
A
TextField object is a text component
that allows for the editing of a single line of text. |
|
class |
Window
A
Window object is a top-level window with no borders and no
menubar. |
Modifier and Type | Method | Description |
---|---|---|
Accessible |
List.AccessibleAWTList.getAccessibleAt(Point p)
Returns the Accessible child contained at the local coordinate
Point, if one exists.
|
|
Accessible |
List.AccessibleAWTList.AccessibleAWTListChild.getAccessibleAt(Point p)
Returns the
Accessible child, if one exists,
contained at the local coordinate Point . |
|
Accessible |
MenuComponent.AccessibleAWTMenuComponent.getAccessibleAt(Point p)
Returns the
Accessible child, if one exists,
contained at the local coordinate Point . |
|
Accessible |
Container.AccessibleAWTContainer.getAccessibleAt(Point p)
Returns the
Accessible child, if one exists,
contained at the local coordinate Point . |
|
Accessible |
Component.AccessibleAWTComponent.getAccessibleAt(Point p)
Returns the
Accessible child,
if one exists, contained at the local
coordinate Point . |
|
Accessible |
List.AccessibleAWTList.getAccessibleChild(int i)
Return the nth Accessible child of the object.
|
|
Accessible |
List.AccessibleAWTList.AccessibleAWTListChild.getAccessibleChild(int i)
Return the specified Accessible child of the object.
|
|
Accessible |
MenuComponent.AccessibleAWTMenuComponent.getAccessibleChild(int i)
Returns the nth
Accessible child of the object. |
|
Accessible |
Container.AccessibleAWTContainer.getAccessibleChild(int i)
Returns the nth
Accessible child of the object. |
|
Accessible |
Component.AccessibleAWTComponent.getAccessibleChild(int i)
Returns the nth
Accessible child of the object. |
|
Accessible |
MenuComponent.AccessibleAWTMenuComponent.getAccessibleParent()
Gets the
Accessible parent of this object. |
|
Accessible |
Component.AccessibleAWTComponent.getAccessibleParent()
Gets the
Accessible parent of this object. |
|
Accessible |
List.AccessibleAWTList.getAccessibleSelection(int i)
Returns an Accessible representing the specified selected item
in the object.
|
|
Accessible |
MenuComponent.AccessibleAWTMenuComponent.getAccessibleSelection(int i)
Returns an
Accessible representing the specified
selected child in the object. |
Modifier and Type | Field | Description |
---|---|---|
protected Accessible |
AccessibleContext.accessibleParent
The accessible parent of this object.
|
Modifier and Type | Method | Description |
---|---|---|
Accessible |
AccessibleTable.getAccessibleAt(int r,
int c)
Returns the Accessible at a specified row and column
in the table.
|
|
Accessible |
AccessibleComponent.getAccessibleAt(Point p)
Returns the Accessible child, if one exists, contained at the local
coordinate Point.
|
|
Accessible |
AccessibleTable.getAccessibleCaption()
Returns the caption for the table.
|
|
abstract Accessible |
AccessibleContext.getAccessibleChild(int i)
Returns the specified Accessible child of the object.
|
|
|