This document discusses controls in the AWT (Abstract Window Toolkit) framework in Java. It describes how to add controls to windows by calling the add() method on Container. The core AWT controls are labels, push buttons, check boxes, choice lists, lists, and scroll bars. Labels are the simplest control and are used to display read-only text. Buttons generate action events when pressed that can be listened for. The document includes examples of how to create and add labels and buttons as controls in a Java application.