AbstractAction | This class provides default implementations for the JFC Action
interface. |
AbstractButton | This forms the base class for components that exhibit button-like
behavior.
|
AbstractListModel | The abstract base class for classes that implement the ListModel interface.
|
ActionMap | ActionMap provides mappings from
Object s
(called keys or Action names)
to Action s.
|
BorderFactory | A factory class for creating standard instances of the Border class. |
Box | A convenience container that uses a BoxLayout object as its LayoutManager.
|
BoxLayout | A concrete implementation of LayoutManager that lays out its
components horizontally or vertically.
|
ButtonGroup | This class is used to create a multiple-exclusion scope for a set of
buttons. |
DefaultComboBoxModel | The default model for combo boxes.
|
DefaultListModel | This class implements the Vector API. |
DefaultListSelectionModel | Default data model for list selections.
|
JButton | An implementation of a "pushbutton" with a text label.
|
JCheckBox | An implementation of a checkbox - an object that is always in one of two
states (SELECTED or DESELECTED) and which displays its state to the user.
|
JComboBox | The JComboBox component allows the user to select an item from a pop-up
list of choices.
When the combobox is in a non-popped-up state, it looks like a JButton
with a "diamond" character on the right. |
JComponent | The base class for charva.swing components. |
JDialog | In the CHARVA package, the JDialog provides exactly the same functionality
as the Dialog. |
JFileChooser | The JFileChooser class displays a dialog from which the user can choose
a file. |
JFrame | In the CHARVA package, JFrame has identical functionality to Frame
|
JLabel | A display area for a short text string. |
JList | A component that allows the user to select one or more objects from a
list.
The JList does not provide scrolling capability. |
JMenu | Implements a menu containing JMenuItems and JSeparators.
|
JMenuBar | An implementation of a menubar.
|
JMenuItem | An implementation of an item in a menu.
|
JOptionPane | JOptionPane makes it easy to pop up a standard dialog box that prompts
the user for information or displays some information.
The labels of the option-buttons displayed within the popup dialog can be
customized by changing static variables in the JOptionPane class.
|
JPanel | JPanel is a generic lightweight container.
|
JPasswordField | JPassword allows the editing of a single line of text; it indicates
that something was typed, but does not display the characters that
were typed.
|
JPopupMenu | An implementation of a popup menu - a small window that pops up and
displays a number of choices.
|
JProgressBar | A component that displays an integer value within a bounded interval.
|
JRadioButton | An implementation of a radiobutton - an item that is always in one of two
states (SELECTED or DESELECTED) and which displays its state to the user.
|
JScrollBar | An implementation of a scrollbar. |
JScrollPane | provides a scrollable view of a component.
|
JSeparator | A horizontal separator in a menu.
|
JTabbedPane | A component that lets the user display one of a set of components
(usually Panels) at a time.
|
JTable | JTable is a user-interface component that displays data in a two-
dimensional table format.
The user-interface works as follows:
The user can select a column by pressing the left or right arrow keys
to move to the desired column, and then pressing ENTER.
He/she can select a row by pressing the up and down arrow keys to move to
the desired row, then pressing ENTER.
Depending on the value of the selection mode, multiple rows and/or columns
may be selected. |
JTextArea | Support for
public void setBounds( Rectangle bounds )
public void setBounds( int top_, int left_, int bottom_, int right_)
public void setBounds(Point topleft_, Dimension size_)
|
JTextField | Support for
public void setBounds( Rectangle bounds )
public void setBounds( int top_, int left_, int bottom_, int right_)
public void setBounds(Point topleft_, Dimension size_)
|
JTree | (UNDER CONSTRUCTION) A component that displays hierarchical data.
|
JViewport | The JViewport class provides a scrollable window onto an underlying
component, whose size can be greater than the size of the JViewport.
|
SwingUtilities | A collection of utility methods for Swing.
|