Richard's J2SE Day 10 Building a Swing Interface

 

(P261)
Swing offers the following features

Swing Features (P262)
Setting the Look and Feel (P262)
UIManager = a class in the javax.swing package

setLookAndFeel(LookAndFeel) method choose a program's look and feel. (throws UnsupportedLookAndFeelException if it cannot set the look and feel)
to get a LookAndFeel object:

Under most circumstances you should call setLookAndFeel() only after every component has been added to your GUI, before you make interface visible.

Standard Dialog Boxes (P265)