blob: d95254c89dadc0390588da48cd510112fb809a32 [file] [log] [blame]
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cocoon.woody.validation;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;
import org.apache.cocoon.woody.util.I18nMessage;
import org.apache.cocoon.woody.util.StringMessage;
import org.apache.excalibur.xml.sax.XMLizable;
/**
* An object that holds a validation error message. The error message can
* be a simple string or a piece of XML.
*
* @author <a href="http://www.apache.org/~sylvain/">Sylvain Wallez</a>
* @version CVS $Id: ValidationError.java,v 1.2 2004/03/05 13:02:34 bdelacretaz Exp $
*/
public class ValidationError {
/** Holds the error message. */
private XMLizable saxFragment;
/**
* @param i18n should the errorMessage be interpreted as an i18n key?
*/
public ValidationError(String errorMessage, boolean i18n) {
if (i18n) {
saxFragment = new I18nMessage(errorMessage);
} else {
saxFragment = new StringMessage(errorMessage);
}
}
/**
* @see I18nMessage#I18nMessage(java.lang.String)
*/
public ValidationError(String errorMessageKey) {
this.saxFragment = new I18nMessage(errorMessageKey);
}
/**
* @see I18nMessage#I18nMessage(java.lang.String, java.lang.String[])
*/
public ValidationError(String errorMessageKey, String[] parameters) {
this.saxFragment = new I18nMessage(errorMessageKey, parameters);
}
/**
* @see I18nMessage#I18nMessage(java.lang.String, java.lang.String[], boolean[])
*/
public ValidationError(String errorMessageKey, String[] parameters, boolean[] keys) {
this.saxFragment = new I18nMessage(errorMessageKey, parameters, keys);
}
/**
* @param errorMessage the errormessages in the form of something that is "XMLizable",
* i.e. can produce SAX events. It should however not produce start/endDocument calls,
* only a piece of embeddable, stand-alone SAX events. Helpful implementations are
* {@link org.apache.cocoon.xml.SaxBuffer SaxBuffer}, {@link I18nMessage} or {@link StringMessage}.
*/
public ValidationError(XMLizable errorMessage) {
this.saxFragment = errorMessage;
}
/**
* Generates SAX events for this ValidationError. In case of the constructors where
* a String error message key was supplied, the necessary I18n tags will be generated.
*/
public void generateSaxFragment(ContentHandler contentHandler) throws SAXException {
if (saxFragment != null) {
saxFragment.toSAX(contentHandler);
}
}
}