blob: 03bee13533f98f1c556e622aba047392d4a24e32 [file] [log] [blame]
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.tools.xjc;
import java.io.OutputStream;
import java.io.PrintStream;
import org.xml.sax.SAXParseException;
/**
* {@link ErrorReceiver} that prints to a {@link PrintStream}.
*
* @author
* Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
*/
public class ConsoleErrorReporter extends ErrorReceiver {
/**
* Errors, warnings are sent to this output.
*/
private PrintStream output;
private boolean hadError = false;
public ConsoleErrorReporter( PrintStream out) {
this.output = out;
}
public ConsoleErrorReporter( OutputStream out ) {
this(new PrintStream(out));
}
public ConsoleErrorReporter() { this(System.out); }
@Override
public void warning(SAXParseException e) {
print(Messages.WARNING_MSG,e);
}
@Override
public void error(SAXParseException e) {
hadError = true;
print(Messages.ERROR_MSG,e);
}
@Override
public void fatalError(SAXParseException e) {
hadError = true;
print(Messages.ERROR_MSG,e);
}
@Override
public void info(SAXParseException e) {
print(Messages.INFO_MSG,e);
}
public boolean hadError() {
return hadError;
}
private void print( String resource, SAXParseException e ) {
output.println(Messages.format(resource,e.getMessage()));
output.println(getLocationString(e));
output.println();
}
}