import java.util.ArrayList; /** * Console user interface for decision support application. * * @author Dr. Jody Paul * @version 4 April 2006 */ public class ConsoleUserInterface extends UserInterface { public ArrayList getChoices() { ArrayList alchoice = new ArrayList(); /* Your code here */ return alchoice; } public ArrayList getCharacteristics() { ArrayList alchar = new ArrayList(); /* Your code here */ return alchar; } public void getCharacteristicRankings(ArrayList alc, int defaultValue) { /* Your code here */ } public double[][] getCrossRankings(ArrayList choices, ArrayList characteristics, int defaultValue) { double[][] crossRankings = new double[choices.size()][characteristics.size()]; /* Your code here */ return crossRankings; } public void showResults(ArrayList choices) { /* Your code here. */ } }