Package java.awt

Contains all of the classes for creating user interfaces and for painting graphics and images.

See:
          Description

Interface Summary
Paint Defines how color patterns can be generated for Graphics2D operations.
Stroke Allows a Graphics2D object to obtain a Shape that is the decorated outline, or the stylistic representation of the outline, of the specified Shape.
Transparency Defines the common transparency modes for implementing classes.
 

Class Summary
BasicStroke Defines a basic set of rendering attributes for the outlines of graphics primitives, which are rendered with a Graphics2D object that has its Stroke attribute set to this BasicStroke.
Dimension Encapsulates the width and height of a component (in integer precision) in a single object.
TexturePaint Provides a way to fill a Shape with a texture that is specified as a BufferedImage.
 

Package java.awt Description

Contains all of the classes for creating user interfaces and for painting graphics and images. A user interface object such as a button or a scrollbar is called, in AWT terminology, a component. The Component class is the root of all AWT components. See Component for a detailed description of properties that all AWT components share.

Some components fire events when a user interacts with the components. The AWTEvent class and its subclasses are used to represent the events that AWT components can fire. See AWTEvent for a description of the AWT event model.

A container is a component that can contain components and other containers. A con tainer can also have a layout manager that controls the visual placement of components in the container. The AWT package contains several layout manager classes and an interface for building your own layout manager. See Container and LayoutManager for more information.

Additional Specification

Since:
JDK1.0


Copyright © 1996-2007 ILOG S.A. All rights reserved.   Documentation homepage.