1 /*2 * Created on Oct 1, 20043 */4 package com.openedit.store;5 6 import java.util.List ;7 8 /**9 * @author cburkey10 *11 */12 public abstract class Converter13 {14 public abstract boolean convert(Store inStore, List inErrorLog) throws Exception ;15 16 }17