KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Created on Jan 17, 2005
3  */

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

10 public interface OrderGenerator
11 {
12     public Order createNewOrder(Store inStore, Cart inCart) throws StoreException;
13
14     public String JavaDoc nextOrderNumber( Store inStore ) throws StoreException;
15 }
16
Popular Tags