Skip to content

Latest commit

 

History

History
90 lines (66 loc) · 4.9 KB

File metadata and controls

90 lines (66 loc) · 4.9 KB

⚡Java Coding Exercises

  • Java coding practise for Java Programming Masterclass - see 👏 Inspiration below

*** Note: to open web links in a new window use: ctrl+click on link**

📄 Table of contents

📚 General info

JavaFX

  • JavaFX FXML an XML-based language that provides the structure for building a user interface separate from the application logic.
  • VBox
  • Java Look and Feel Graphics Repo. collection of toolbar button graphics for use with the Java look and feel

📷 Screenshots

Example screenshot

📶 Technologies

💾 Setup

  • Open each folder in an IDE such as IntelliJ.

💻 Code Examples

  • tba
// stores the values in the list
@Override
public void read(List<String> savedValues) {
  if(savedValues != null && savedValues.size() > 0) {
    this.name = savedValues.get(0);
    this.hitPoints = Integer.parseInt(savedValues.get(1));
    this.strength = Integer.parseInt(savedValues.get(2));
    this.weapon = savedValues.get(3);
  }
}

🆒 Features

  • IntelliJ

📋 Status & To-Do List

  • Status: Course part complete
  • To-Do: Complete course

👏 Inspiration

✉️ Contact