Project for Udacity Android Development for Beginners course.
- Create the structure of a ReportCard Java Class
- The class contains appropriate variables to track information which belongs on a report card.
- The class contains at least one constructor which properly instantiates each variable in the class.
- Any private variables which might be read off of a report card should have a getter method to access them.
- Any private variables that should be set by an outside class should have a setter method.
- The class contains a toString method which returns the contents of the class in a human-readable string.
- The code is properly formatted and compiles without errors.