Skip to content

AndrewJBateman/java-coding-exercises

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚡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

About

📋 Exercises and notes from Udemy programming course

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published