View Javadoc

1   // Copyright 2006-2008, by the California Institute of 
2   // Technology. ALL RIGHTS RESERVED. United States Government 
3   // Sponsorship acknowledged. Any commercial use must be negotiated with 
4   // the Office of Technology Transfer at the California Institute of 
5   // Technology.
6   //
7   // This software may be subject to U.S. export control laws. By 
8   // accepting this software, the user agrees to comply with all 
9   // applicable U.S. export laws and regulations. User has the 
10  // responsibility to obtain export licenses, or other export authority 
11  // as may be required before exporting such information to foreign 
12  // countries or providing access to foreign persons.
13  //
14  // $Id: DefaultValidationListener.java 3461 2008-08-07 17:43:26Z pramirez $ 
15  //
16  
17  package gov.nasa.pds.tools.label.validate;
18  
19  /***
20   * @author pramirez
21   * @version $Revision: 3461 $
22   * 
23   */
24  public class DefaultValidationListener implements ValidationListener {
25  
26      /* (non-Javadoc)
27       * @see gov.nasa.pds.tools.label.validate.ValidationListener#reportError(java.lang.String)
28       */
29      public void reportError(String error) {
30          // TODO Auto-generated method stub
31  
32      }
33  
34      /* (non-Javadoc)
35       * @see gov.nasa.pds.tools.label.validate.ValidationListener#reportWarning(java.lang.String)
36       */
37      public void reportWarning(String warning) {
38          // TODO Auto-generated method stub
39  
40      }
41  
42  }