first commit
This commit is contained in:
45
Code/Display.java
Normal file
45
Code/Display.java
Normal file
@@ -0,0 +1,45 @@
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user