+ - 0:00:00
Notes for current slide

Toggle speaker view by pressing P

Pressing C clones the slideshow view, which is the view to put on the projector if you're using speaker view.

Press ? to toggle keyboard commands help.

Notes for next slide

Inheritance Review

Toggle speaker view by pressing P

Pressing C clones the slideshow view, which is the view to put on the projector if you're using speaker view.

Press ? to toggle keyboard commands help.

Inheritance

  • A relationship between classes

Inheritance

  • A relationship between classes
  • Super class - more generalized type

Inheritance

  • A relationship between classes
  • Super class - more generalized type
    • Animal

Inheritance

  • A relationship between classes
  • Super class - more generalized type
    • Animal
  • Sub classes - more specific types of the super class

Inheritance

  • A relationship between classes
  • Super class - more generalized type
    • Animal
  • Sub classes - more specific types of the super class
    • Dog
    • Gnat
    • Robin

Inheritance

  • A relationship between classes
  • Super class - more generalized type
    • Animal
  • Sub classes - more specific types of the super class
    • Dog
    • Gnat
    • Robin
  • Sub class is-a super class

Motivation for Inheritance

  • Code reuse

Motivation for Inheritance

  • Code reuse
  • Identify similar but not identical types

Motivation for Inheritance

  • Code reuse
  • Identify similar but not identical types
  • Use general reference to point to specific object type
  • Open triangle signifies inheritance (points to super class)

JavaFX Button UML

Code reuse

  • Properties managed by Control:
    • contextMenu
    • skin
    • toolTip
  • Properties managed by Labeled:
    • font
    • graphic
    • lineSpacing
    • etc...
  • Properties managed by ButtonBase:
    • armed
    • onAction

Benefits of Inheritance

Identifying similar but not identical types

  • Separator, MenuBar, Labeled, ScrollPane, ListView, and ToolBar are all specific types of Controls

Benefits of Inheritance

Identifying similar but not identical types

  • Separator, MenuBar, Labeled, ScrollPane, ListView, and ToolBar are all specific types of Controls

General ref can point to specific object type

Control control = new Separator();
Labeled labeledControl = new Label("I'm an enigma");
ButtonBase button = new Button("I'm not a dress shirt");
button = new CheckBox("I don't play hockey");
control = button;
button = labeledControl; // <-- Illegal since a labeled control may not be a button

Analogies

  • I can refer to my daughter as my child
  • I can refer to my maternal grandfather as my ancestor
  • I can refer to my iPhone 8 plus as my cell phone or just phone

Jokes explained

  • An enigma - defies labeling
  • A shirt - needs to be pressed (ironed)
  • Hockey - I don't want to get hurt by being checked

Code Reuse

javafx.scene.control.Control
javafx.scene.control.Labeled
javafx.scene.control.ButtonBase
javafx.scene.control.Button
  • Functionality shared by all objects that are Controls is implemented in the Control class

Code Reuse

javafx.scene.control.Control
javafx.scene.control.Labeled
javafx.scene.control.ButtonBase
javafx.scene.control.Button
  • Functionality shared by all objects that are Controls is implemented in the Control class
    • E.g., setToolTip()

Code Reuse

javafx.scene.control.Control
javafx.scene.control.Labeled
javafx.scene.control.ButtonBase
javafx.scene.control.Button
  • Functionality shared by all objects that are Controls is implemented in the Control class
    • E.g., setToolTip()
  • Functionality shared by all objects that are Labeled controls is implemented in the Labeled class

Code Reuse

javafx.scene.control.Control
javafx.scene.control.Labeled
javafx.scene.control.ButtonBase
javafx.scene.control.Button
  • Functionality shared by all objects that are Controls is implemented in the Control class
    • E.g., setToolTip()
  • Functionality shared by all objects that are Labeled controls is implemented in the Labeled class
    • E.g., setText()

Code-Reuse Classes

  • It may make sense to create a super class solely to promote code reuse

Code-Reuse Classes

  • It may make sense to create a super class solely to promote code reuse
  • The ButtonBase class exists solely for code reuse

Code-Reuse Classes

  • It may make sense to create a super class solely to promote code reuse
  • The ButtonBase class exists solely for code reuse
    • All buttons (buttons, hyperlinks, checkboxes, radio buttons, etc...) need to respond to actions
    • ButtonBase manages what code should be run when the button is pressed
    • Classes with Base or Abstract in the name are typically created to promote "code reuse"

Synonyms

  • Super class ↔ Parent class
  • Sub class ↔ Child class
  • B extends AB derives from AB is a sub class of A

Inheritance

  • A relationship between classes
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow