gov.nasa.pds.tools.label.ValidateExceptionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validate Show documentation
Show all versions of validate Show documentation
The Validate Tool project contains software for validating PDS4 product labels and product data.
// Copyright 2009-2017, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged.
// Any commercial use must be negotiated with the Office of Technology
// Transfer at the California Institute of Technology.
//
// This software is subject to U. S. export control laws and regulations
// (22 C.F.R. 120-130 and 15 C.F.R. 730-774). To the extent that the software
// is subject to U.S. export control laws and regulations, the recipient has
// the responsibility to obtain export licenses or other export authority as
// may be required before exporting such information to foreign countries or
// providing access to foreign nationals.
//
// $Id$
package gov.nasa.pds.tools.label;
/**
* Defines an interface for handling exceptions during label validation.
*/
public interface ValidateExceptionHandler extends ExceptionHandler {
/**
* Adds a location to the exception handler.
*
* @param location The location.
*/
void addLocation(String location);
/**
* Adds a header to the report.
*
* @param title The name of the section to add.
*/
void printHeader(String title);
/**
* Records the validation results.
*
* @param location The target file.
*/
void record(String location);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy