source: trunk/abcl/examples/java-interface/BankAccount.java

Last change on this file was 13186, checked in by Mark Evenson, 13 years ago

Add a slightly simpler example of implemeting a Java interface in Lisp.

TODO Needs further documentation.

File size: 130 bytes
Line 
1public 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.