source:
branches/1.1.x/examples/java-interface/BankAccount.java
| Last change on this file was 13186, checked in by , 15 years ago | |
|---|---|
| File size: 130 bytes | |
| Line | |
|---|---|
| 1 | public interface BankAccount { |
| 2 | public int getBalance(); |
| 3 | public void deposit(int amount); |
| 4 | public void withdraw(int amount); |
| 5 | } |
Note: See TracBrowser
for help on using the repository browser.