KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Created on Oct 1, 2004
3  */

4 package com.openedit.store;
5
6 import java.util.List JavaDoc;
7
8 /**
9  * @author cburkey
10  *
11  */

12 public abstract class Converter
13 {
14     public abstract boolean convert(Store inStore, List JavaDoc inErrorLog) throws Exception JavaDoc;
15
16 }
17
Popular Tags