GUI1 Flashcards
What is the purpose of the JLabel constructor with string, Icon, and alignment arguments?
To create a JLabel that displays both text and an icon with specified alignment.
Example: JLabel label2 = new JLabel(“Label with text and icon”, bug, SwingConstants.LEFT);
What is the function of the setToolTipText method in JLabel?
It sets a tooltip that appears when the mouse hovers over the JLabel.
Example: label2.setToolTipText(“This is label2”);
What does the validate method do in a container?
It triggers the layout for the container and all child containers, marking the container as valid.
What is the default state of a newly created component?
Invalid.
What is GridLayout?
A layout manager that places components in a grid of cells, with each component taking all available space within its cell.
What happens to the cell size in a GridLayout when the window is resized?
The cell size changes so that all cells are as large as possible given the available space.
What are some common layout managers in Java?
- FlowLayout
- BorderLayout
- BoxLayout
- CardLayout
- GridLayout
- GridBagLayout
- GroupLayout
- SpringLayout
What distinguishes Swing from AWT?
Swing components are implemented in Java, offering more portability and flexibility than AWT components, which depend on the underlying platform.
What are lightweight components in Java?
Components not tied directly to the GUI components supported by the underlying platform.
What are heavyweight components?
Components that are tied directly to the local platform, such as AWT components.
What is the superclass of all lightweight Swing components?
JComponent.
What is a functional interface in Java?
An interface containing only one abstract method, used extensively with Java SE 8’s lambda capabilities.
Which interfaces are commonly used as functional interfaces in Java SE?
- ActionListener
- Comparator
- Runnable
What is an anonymous inner class?
A special form of inner class declared without a name, typically used for event handling.
What is the role of listenerList in a JComponent?
It maintains references to the registered listeners for that component.
What must an object be to handle an action event?
It must be an instance of the EventHandler<T> interface.</T>
True or False: The event information is stored in an object of a class that extends AWTEvent.
True.
What occurs when an event happens in a GUI component?
The event is dispatched to the event listeners of the appropriate type.
What is the significance of the pack method in a window?
It validates the window and lays out the window’s component hierarchy for the first time.
What are the two requirements for a handler of an action event?
- The object must be an instance of the EventHandler<T> interface. 2. The handler must be registered with the event source object using source.setOnAction(handler).</T>
What does <T> signify in EventHandler?</T>
T is a generic type that is a subtype of Event.
What method must be overridden in a handler class to respond to an action event?
handle(ActionEvent)
What is an event listener in the context of GUI events?
An object of a class that implements one or more of the event-listener interfaces from packages java.awt.event and javax.swing.event.
True or False: An event is an object created from an event source.
True
What are the corresponding event-listener interfaces for ActionEvents, MouseEvents, and KeyEvents?
- ActionEvents: ActionListeners
- MouseEvents: MouseListeners and MouseMotionListeners
- KeyEvents: KeyListeners
What does a GUI component receive when an event occurs?
A unique event ID specifying the event type.
What is the purpose of the event ID in a GUI component?
To decide the listener type to which the event should be dispatched and which method to call on each listener object.
List the steps to build a GUI from bottom up.
- Create Frame
- Create Panel
- Create Components
- Create Listeners
- Add listeners into components
- Add components into panel
- Add panel into frame
What is the function of JOptionPane in Java?
To provide static constants for message dialogs and to interact with the user through input and message dialogs.
What type of dialog does ERROR_MESSAGE represent in JOptionPane?
A dialog that indicates an error to the user.
Fill in the blank: A _______ dialog poses a question to the user and normally requires a response.
QUESTION_MESSAGE
What must a program do after receiving user input from JOptionPane?
Convert the String to an int.
What is the class name of the example program that uses JOptionPane for input and output?
Addition
What is a graphical user interface (GUI)?
A user-friendly mechanism for interacting with an application, often containing components like title bars, menu bars, buttons, and combo boxes.
What is the main package for Swing GUI components?
javax.swing
What does the GUI Builder’s Source button do?
Enables you to view a class’s source code.
What is the role of the Properties Window in the GUI Builder?
Displays the properties of the component currently selected.
What does Automatic Component Positioning (Snapping) assist with?
Positioning components based on the operating system’s look and feel.
True or False: Visual feedback helps in identifying component positioning relationships.
True
What is Free Design in the GUI Builder?
Allows you to build forms by placing components where you want without concern for layout attributes.
What type of component is a JButton?
Triggers an event when clicked with the mouse.
Name a basic GUI component that enables user input.
JTextField
What does JPanel provide in a GUI?
An area in which components can be placed and organized.
What type of message does INFORMATION_MESSAGE represent?
A dialog with an informational message to the user.