KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Created on Aug 24, 2006
3  */

4 package com.openedit.store;
5
6 import java.io.Writer JavaDoc;
7
8 import com.openedit.OpenEditException;
9
10 public interface ProductExport
11 {
12     public void exportAllProducts(Store inStore, Writer JavaDoc inOut) throws OpenEditException;
13     public void exportCatalogsWithProducts(Store inStore, Writer JavaDoc inOut) throws OpenEditException;
14
15 }
16
Popular Tags