View Javadoc

1   // Copyright 2006-2007, by the California Institute of Technology.
2   // ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged.
3   // Any commercial use must be negotiated with the Office of Technology Transfer
4   // at the California Institute of Technology.
5   //
6   // This software is subject to U. S. export control laws and regulations
7   // (22 C.F.R. 120-130 and 15 C.F.R. 730-774). To the extent that the software
8   // is subject to U.S. export control laws and regulations, the recipient has
9   // the responsibility to obtain export licenses or other export authority as
10  // may be required before exporting such information to foreign countries or
11  // providing access to foreign nationals.
12  //
13  // $Id: TableValidator.java 2607 2007-04-18 19:37:08Z pramirez $ 
14  //
15  
16  package gov.nasa.pds.tools.object.validate;
17  
18  import java.util.logging.Logger;
19  
20  import gov.nasa.pds.tools.label.ObjectStatement;
21  import gov.nasa.pds.tools.label.parser.InvalidDescriptionException;
22  import gov.nasa.pds.tools.label.parser.InvalidObjectException;
23  import gov.nasa.pds.tools.label.validate.DataObjectValidator;
24  import gov.nasa.pds.tools.object.io.DataObjectInputStream;
25  
26  /***
27   * @author pramirez
28   * @version $Revision: 2607 $
29   * 
30   */
31  public class TableValidator implements DataObjectValidator {
32      private static Logger log = Logger.getLogger(TableValidator.class.getName());
33  
34      /* (non-Javadoc)
35       * @see gov.nasa.jpl.pds.tools.label.parser.DataObjectValidator#validate(byte[], gov.nasa.jpl.pds.tools.label.ObjectStatement)
36       */
37      public void validate(DataObjectInputStream input, ObjectStatement object)
38              throws InvalidObjectException, InvalidDescriptionException {
39          // TODO Auto-generated method stub
40  
41      }
42  
43  }