diff --git a/README.md b/README.md index 088323f..ec2dd58 100644 --- a/README.md +++ b/README.md @@ -43,34 +43,37 @@ object-oriented, GUI programming, advanced GUI and Web programming using Java... ____ + ## How to Contribute ### _Coding Guidelines_ + - #### Solution must use Java 8 SE, as this is the version used by the book. - - #### Every solution should have a java file containing a public main method for testing it. - - #### Naming convention is: ExerciseCC_EE.java where CC is the chapter number and EE is the exercise number. - - #### The public Exercise class containing the main method must include a JavaDoc comment on the class with original exercise question. - - #### Each solution should be its own self-contained program with minimal dependencies on other files. If you need multiple files please create a package for the exercise. - - #### ch_XX/exercise22_07/Exercise22_07.java - - #### This allows us to utilize the Exercise Checking Tool [Exercise Checking Tool](https://liveexample.pearsoncmg.com/CheckExercise/faces/CheckExercise.xhtml?chapter=1&programName=Exercise01_01) to verify solutions. + - #### Every solution should have a java file containing a public main method for testing it. + - #### Naming convention is: ExerciseCC_EE.java where CC is the chapter number and EE is the exercise number. + - #### The public Exercise class containing the main method must include a JavaDoc comment on the class with original exercise question. + - #### Each solution should be its own self-contained program with minimal dependencies on other files. If you need multiple files please create a package for the exercise. + - #### ch_XX/exercise22_07/Exercise22_07.java + - #### This allows us to utilize the Exercise Checking Tool [Exercise Checking Tool](https://liveexample.pearsoncmg.com/CheckExercise/faces/CheckExercise.xhtml?chapter=1&programName=Exercise01_01) to verify solutions. - ### Example exercise solution: + ```java package ch_01; + /** -* 1.1 (Display three messages) Write a program that displays Welcome to Java, -* Welcome to Computer Science, and Programming is fun. - */ - public class Exercise01_01 { - public static void main(String[] args) { - System.out.println("Welcome to Java"); - System.out.println("Welcome to Computer Science"); - System.out.println("Programming is fun"); - } + * 1.1 (Display three messages) Write a program that displays Welcome to Java, + * Welcome to Computer Science, and Programming is fun. + */ +public class Exercise01_01 { + public static void main(String[] args) { + System.out.println("Welcome to Java"); + System.out.println("Welcome to Computer Science"); + System.out.println("Programming is fun"); + } } ``` - ### Pull requests: - _When to use Pull Requests_ @@ -156,10 +159,8 @@ Indicates 100% completion of all exercises for that chapter 14 - JavaFx Basics complete-check-img
  • Chapter 15 - - Event-Driven Programming and Animations -
    -Exercises Needed: 33 -
    + - Event-Driven Programming and Animations complete-check-img +

  • Chapter 16 - JavaFx UI Controls and Multimedia