The LayoutManager
class lets you control the locations of individual widgets in Java applets. Since you're never sure how big an area you'll have to work with or how it will be shaped, most of the controls are relative in nature. That is you say this widget should be above that one or left aligned with the other one; but you don't say that this widget's upper left hand corner is at pixel (42, 65).
This week you'll learn the five basic layout managers included in the AWT and some additional tricks for handling complicated applets.