Package acm.gui

This package provides a set of classes that support the creation of simple, interactive programs.

See:
          Description

Class Summary
DoubleField This class implements a simple interactor that accepts a floating-point value.
HPanel This class represents a horizontal TablePanel with a single row.
IntField This class implements a simple interactor that accepts an integer value.
TableConstraints This class specifies a set of constraints appropriate to a TableLayout or GridBagLayout.
TableLayout This class implements a new LayoutManager that arranges components into a two-dimensional grid.
TablePanel This class represents a simple JPanel that uses TableLayout as its layout manager.
VPanel This class represents a vertical TablePanel with a single column.
 

Package acm.gui Description

This package provides a set of classes that support the creation of simple, interactive programs. The most important class in the package is TableLayout, which implements a new layout manager for creating tabular arrangements of components. The other classes likely to be used by students are IntField and DoubleField, which provide simple interactors for reading numbers of the appropriate type.