View Javadoc
1   package org.kuali.ole.batch.marc;
2   
3   import org.marc4j.MarcReader;
4   
5   import java.util.List;
6   
7   import org.marc4j.ErrorHandler.Error;
8   
9   /**
10   * Created with IntelliJ IDEA.
11   * User: meenrajd
12   * Date: 9/2/13
13   * Time: 11:55 AM
14   * To change this template use File | Settings | File Templates.
15   */
16  public interface OLEMarcReader extends MarcReader {
17      public boolean hasErrors();
18  
19      public List<Error> getErrors();
20  
21      public Error getError();
22  
23      public void clearErrors();
24  
25  }