Computer Science II - Windows

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

This set of flashcards covers key terms and concepts related to handling windows and user interface in JavaFX as taught in the Computer Science II course.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

AlertType.INFORMATION

A type of alert window that provides information to the user.

2
New cards

FXMLLoader

A class responsible for loading FXML files that define the structure of a user interface for a JavaFX application.

3
New cards

Modal Window

A window that must be interacted with before the user can return to the application, preventing access to other windows.

4
New cards

Non-blocking Call

A call that allows the user to interact with other parts of the application while a window is open.

5
New cards

Blocking Call

A call that requires the user to interact with the displayed window before they can return to the application.

6
New cards

Stage

A top-level JavaFX container that represents a window.

7
New cards

Scene

A container for all content in a scene graph; it is displayed in a stage.

8
New cards

setTitle()

A method that sets the title of a stage.

9
New cards

showAndWait()

A method that displays a modal dialog and waits for it to be closed before continuing.

10
New cards

hide()

A method used to close a window in JavaFX.