first commit
This commit is contained in:
37
Code/CardReader.java
Normal file
37
Code/CardReader.java
Normal file
@@ -0,0 +1,37 @@
|
||||
public class CardReader {
|
||||
|
||||
private ATM atm;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param atm
|
||||
*/
|
||||
public CardReader(ATM atm) {
|
||||
this.atm = atm;
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public Card readCard() {
|
||||
// TODO - implement CardReader.readCard
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public void ejectCard() {
|
||||
// TODO - implement CardReader.ejectCard
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public void retainCard() {
|
||||
// TODO - implement CardReader.retainCard
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public ATM getAtm() {
|
||||
return atm;
|
||||
}
|
||||
|
||||
public void setAtm(ATM atm) {
|
||||
this.atm = atm;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user