/**
 * A very simple base class for our inheritance demo.
 *
 * @author Mark Young (A00000000)
 */
public class Parent {
    private String value;

    /**
     * Change the value of this Parent.
     *
     * @param newValue the new value
     */
    public void setValue(String newValue) {
        this.value = newValue;
    }

    /**
     * Return this Parent's value
     *
     * @return this Parent's value
     */
    public String getValue() {
        return this.value;
    }

}

