KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > store > PaymentMethod


1 /*
2  * Created on Mar 4, 2004
3  *
4  */

5 package com.openedit.store;
6
7 /**
8  * @author dbrown
9  *
10  */

11 public abstract class PaymentMethod
12 {
13
14     public PaymentMethod()
15     {
16     }
17
18     public abstract boolean requiresValidation();
19     
20     public abstract String JavaDoc getType();
21 }
22
Popular Tags