1 package attrib4j.examples;
2
3 /***
4 * A simple interface to help test/develop inheritance of attributes.
5 * @author <a href="mailto:mpollack@speakeasy.net">Mark Pollack</a>
6 * @version $Revision: 1.2 $ $Date: 2003/04/23 05:15:14 $
7 */
8
9 public interface DepositTransaction {
10
11 /***
12 * This deposit method should imply "Required" transaction
13 * semantics on subclasses.
14 * @Transaction("Required")
15 * @param accountNbr
16 * @param amount
17 */
18 void deposit(int accountNbr, long amount);
19
20 }
This page was automatically generated by Maven