/**
 * An alternative item or course of action.
 * 
 * @author Dr. Jody Paul
 * @version 3 April 2006
 */
public class Choice {
    private String name;
    private int finalScore;
    
    /**
     * Constructor that sets the choice name.
     * Default finalScore is 0;
     */
    public Choice(String theName) {
        /* Your code here. */
    }
    
    public void setFinalScore(int newScore) {
        /* Your code here. */
    }
    
    public String getName() {
        /* Your code here. */
    }

    public int getFinalScore() {
        /* Your code here. */
    }
}

