1 Flashcards
It is used to group components together
Panel
It serves as the main application window and can contain other AWT conponents
Frame
It provides a simple way to show information to the user.
Lebel
The _____ class represents a clickable button that can trigger an action when pressed.
Button
The___ class is a single-line text input field that allows users to enter text
TextField
It is a multi-line text input area that allows users to enter and edit longer texts.
TextArea
The ___ class represent small box that can be checked or unlocked by the user.
Checkbox
It is used to group multiple checkboxes where only one checkbox in the group can be checked at a time
CheckboxGroup
It is similar to a checkbox but is typically used when only option out of multiple choices can be checked at a time
Radiobutton
It is represent a dropdown menu that allow users to select a single item from a list of option
Choice
To handle button clicks you need to implement the actionPerformance method of the____ interface
ActionListener
This interface is used to handle mouse event such as clicking pressing releasing or moving the mouse componet
MouseListener
This interface is used to handle keyboard events such as typing or pressing keys
KeyListener
This interface is used for handling event generated by components like buttons when they are clicked
ActionListener
Import the necessary AWT package
import java.awt.*;
Create a class that extend the frame class
Public class MyFrame extends Frame{
}
Frame properties and attributes
SetTitle
SetSize
SetLocation
SetResizable
SetVisible
SetDefault
Panel propertice and layout
SetBackground
SetForeground
SetLayout
SetLayout
What does awt stand for in java
Abstract windows toolkit
Which class in ATW is used create a top level window
Frame