Starting from:

$20

CS1331 Homework 5 - water fountain Solved

The water fountain company that you work for wants to re-write the code for their water fountains. The production team has given you all the information that needs to be tracked by each water fountain. The sales team has also given you a few requirements for special features to help sell the updated models. Your job is to make a Java class to represent a water fountain that contains all the information and requirements you have received. Unfortunately, you are the only software developer at your job so you have to write everything yourself.

Solution Description
For this assignment create a file named WaterFountain.java. You will have to fill in the required instance variables and methods listed below.

Instance Variables:

•      String modelName

–    modelName should have private access and be used to hold the model name of the water fountain • boolean requiresMaintenance

–    requiresMaintenance should have private access and be used to hold if the water fountain requires maintenance or not.

•      int cupsPoured

–    cupsPoured should have private access and be used to hold the number of cups of water the water fountain has poured.

Static Variable:

•      int totalWaterFountains

–    totalWaterFountains should have private access and be used to hold the number of water fountains that have been created. It should be set to 0 by default.

Constant Variable:

•      String SOFTWARE_VERSION

–    SOFTWARE_VERSION should have public access, not be able to be changed, and should be able to be referenced statically. The variable should be set to "2.0.0".

The Constructor:

The constructor should only take in values for modelName and cupsPoured and set each of them respectively. requiresMaintenance should be initialized to false and totalWaterFountains should be incremented by one.

The Methods:

All getters and setters should have public access.

•      Proper Getter & Setter for modelName

•      Proper Getter & Setter for requiresMaintenance

•      Proper Getter & Setter for cupsPoured

•      Proper Static Getter for totalWaterFountains

•      void pourCup()

–    This method takes no parameters, returns nothing, and has public access. If the water fountain does not require maintenance, cupsPoured should be incremented by one. If the water fountain does require maintenance, do nothing.

•      boolean equals(WaterFountain other)

–    This method takes in a WaterFountain, returns true if the other passed in water fountain is logically equal to this water fountain and false otherwise, and has public access. Water fountains are logically equal if they have the same modelName, cupsPoured, and SOFTWARE_VERSION.

•      String toString()

–    This method takes no parameters, returns a String, and has public access. This method will return a string that contains the water fountain’s modelName, requiresMaintenance, cupsPoured, and SOFTWARE_VERSION.

–    If the water fountain needs maintenance the returned string should match this: "[modelName] has poured [cupsPoured] cups, requires maintenance, and is running version: [SOFTWARE_VERSION]"

–    If the water fountain does not need maintenance then the returned string should match this: "[modelName] has poured [cupsPoured] cups, does not require maintenance, and is running version: [SOFTWARE_VERSION]"

–    Example:         "A-222 has poured 987 cups, does not require maintenance, and is running version: 2.0.0"

Note: Each method requires proper JavaDocs (see below for more information)

Testing your code
If you want to test out your own code before submitting we recommend creating a separate java file and implementing a main method there. You can then create new water fountains and test your methods. Below is some sample testing code. These tests are not comprehensive!

WaterFountain wf = new WaterFountain("A-222", 987) WaterFountain wf2 = new WaterFountain("B-5", 1) wf.toString()

- A-222 has poured 987 cups, does not require maintenance, and is running version: 2.0.0 wf.pourCup() wf.getCupsPoured()

- 988 wf.equals(wf2) - false wf.equals(wf)

- true

WaterFountain.totalWaterFountains

- 2

Feel free to create your own tests in the main method! Try to write tests for the remaining methods in the file!

Rubric
•      [15] Method Variables

–    [5] Correct visibility and type for instance variables

–    [5] Correct visibility, modifiers, and type for totalWaterFountains

–    [5] Correct visibility, modifiers, and type for SOFTWARE_VERSION

•      [20] Constructor

–    [15] Correct setting of instance variables

–    [5] Increments totalWaterFountains

•      [20] Getters & Setters

–    [5] Correct Getter & Setter for modelName

–    [5] Correct Getter & Setter for requiresMaintenance

–    [5] Correct Getter & Setter for cupsPoured

–    [5] Correct Getter for totalWaterFountains

•      [10] Correct pourCup() method

•      [20] Correct equals(WaterFountain other) method

•      [15] Correct toString() method

Allowed Imports

To prevent trivialization of the assignment, you are not allowed to import any classes or packages.

Feature Restrictions
There are a few features and methods in Java that overly simplify the concepts we are trying to teach or break our auto grader. For that reason, do not use any of the following in your final submission:

•      var (the reserved keyword)

•      System.exit

Javadocs
For this assignment, you will be commenting your code with Javadocs. Javadocs are a clean and useful way to document your code’s functionality. For more information on what Javadocs are and why they are awesome, the online overview for them is extremely detailed and helpful.

You can generate the javadocs for your code using the command below, which will put all the files into a folder called javadoc:

$ javadoc *.java -d javadoc

The relevant tags that you need to include are @author, @version, @param, and @return. Here is an example of a properly Javadoc’d class:

import java.util.Scanner;

/**

*  This class represents a Dog object.

*  @author George P. Burdell

*  @version 1.0

*/ public class Dog {

/**

* Creates an awesome dog (NOT a dawg!)

*/ public Dog() { ...

}

/**

* This method takes in two ints and returns their sum

* @param a first number

* @param b second number * @return sum of a and b

*/ public int add(int a, int b) {

...

}

}
A more thorough tutorial for Javadocs can be found here.

Take note of a few things:

1.    Javadocs are begun with /** and ended with */.

2.    Every class you write must be Javadoc’d and the @author and @verion tag included. The comments for a class should start with a brief description of the role of the class in your program.

3.    Every non-private method you write must be Javadoc’d and the @param tag included for every method parameter. The format for an @param tag is @param <name of parameter as written in method header <description of parameter. If the method has a non-void return type, include the @return tag which should have a simple description of what the method returns, semantically.

Checkstyle can check for Javadocs using the -a flag, as described in the next section.

Checkstyle
For this assignment, we will be enforcing style guidelines with Checkstyle, a program we use to check Java style. Checkstyle can be downloaded here.

To run Checkstyle, put the jar file in the same folder as your homework files and run

java -jar checkstyle-6.2.2.jar -a *.java

The Checkstyle cap for this assignment is 25 points. This means that up to 25 points can be lost from

Checkstyle errors.

For this homework we will not count off for the checkstyle issue of "Definition of 'equals()' without corresponding definition of 'hashCode()'." or "covariant equals without overriding equals(java.lang.Object)"

More products