45 lines
816 B
Java
45 lines
816 B
Java
public class Display {
|
|
|
|
public Display() {
|
|
// TODO - implement Display.Display
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param message
|
|
*/
|
|
public void display(String message) {
|
|
// TODO - implement Display.display
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param prompt
|
|
*/
|
|
public int readPIN(String prompt) {
|
|
// TODO - implement Display.readPIN
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param prompt
|
|
* @param menu
|
|
*/
|
|
public int readMenuChoice(String prompt, String[] menu) {
|
|
// TODO - implement Display.readMenuChoice
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param prompt
|
|
*/
|
|
public Money readAmount(String prompt) {
|
|
// TODO - implement Display.readAmount
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
} |