Chapter 14 Flashcards

1
Q

Abstract Window Toolkit

A

(AWT) the set of components for developing simple graphics applications that was in use before the introduction of Swing components.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

bidirectional binding

A

Two properties are bound together so that a change in one property is reflected in another object, and vice versa.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

bindable object

A

When a target object is bound to a source object, the source object is called a bindable object or observable object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

binding object/binding property

A

JavaFX introduces a new concept called binding property that enables a target object to be bound to a source object. If the value in the source object changes, the target property is also changed automatically. The target object is simply called a binding object or binding property.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

JavaFX

A

JavaFx is a platform for GUI programming in Java. It incorporates modern GUI technologies to enable you to develop rich internet applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

node

A

A node is a visual component such as a shape, an image view, a UI control, or a pane.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

observable object

A

Is an instance of the Observable interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

pane

A

A pane is a JavaFX node for grouping and organizing other nodes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

primary stage

A

A Stage object is a window. A Stage object called primary stage is automatically created by the JVM when the application is launched.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

property getter method

A

A getter method for returning the property itself.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

shape

A

A shape refers to a text, line, circle, ellipse, rectangle, arc, polygon, etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Swing

A

Swing is a platform for developing GUI programs in Java. It has been replaced by JavaFX

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

UI control

A

A UI control refers to a label button, check box, radio button, text field, text area etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

unidirectional binding

A

A property is bound to a source property. Change of the value in the source property is automatically reflected in the target. This is called a unidirectional binding.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

value getter method

A

A getter method that returns the value in a property.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

value setter method

A

A setter method that set the value in a property.