The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available.
See Java Language Changes for a summary of updated language features in Java SE 9 and subsequent releases.
See JDK Release Notes for information about new features, enhancements, and removed or deprecated options for all JDK releases.
Use this lesson’s tables, the component how-to sections and the event listeners how-to sections to complete these questions and exercises.
1. What listener would you implement to be notified when a particular component has appeared on screen? What method tells you this information?
2. What listener would you implement to be notified when the user has finished editing a text field by pressing Enter? What listener would you implement to be notified as each character is typed into a text field? Note that you should not implement a general- purpose key listener, but a listener specific to text.
3. What listener would you implement to be notified when a spinner’s value has changed? How would you get the spinner’s new value?
4. The default behavior for the focus subsystem is to consume the focus traversal keys, such as Tab and Shift Tab. Say you want to prevent this from happening in one of your application’s components. How would you accomplish this?
1. Take the Beeper.java
example and add a text field. Implement it so that when the user has finishing entering data, the system beeps.
2. Take the Beeper.java
example and add a selectable component that allows the user to enter a number from 1 to 10. For example, you can use a combo box, a set of radio buttons, or a spinner. Implement it so that when the user has selected the number, the system beeps that many times.