/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
*
* @author neeraj
*/
/** Creates a new instance of StaxErrorReporter */
super();
}
/** Creates a new instance of StaxErrorReporter
* If this constructor is used to create the object, one must invoke reset() on this object.
*/
public StaxErrorReporter() {
super();
}
/**
*One must call reset before using any of the function.
*/
}
/**
* Reports an error at a specific location.
*
* @param location The error location.
* @param domain The error domain.
* @param key The key of the error message.
* @param arguments The replacement arguments for the error message,
* if needed.
* @param severity The severity of the error.
*
* @see #SEVERITY_WARNING
* @see #SEVERITY_ERROR
* @see #SEVERITY_FATAL_ERROR
*/
short severity) throws XNIException {
// format error message and create parse exception
if (messageFormatter != null) {
}
else {
if (argCount > 0) {
for (int i = 0; i < argCount; i++) {
if (i < argCount -1) {
}
}
}
}
//no reporter was specified
/**
* if (reporter == null) {
* reporter = new DefaultStaxErrorReporter();
* }
*/
// call error handler
switch (severity) {
case SEVERITY_WARNING: {
try{
if(fXMLReporter!= null){
}
}catch(XMLStreamException ex){
//what we should be doing ?? if the user throws XMLStreamException
//REVISIT:
throw new XNIException(ex);
}
break;
}
case SEVERITY_ERROR: {
try{
if(fXMLReporter!= null){
}
}catch(XMLStreamException ex){
//what we should be doing ?? if the user throws XMLStreamException
//REVISIT:
throw new XNIException(ex);
}
break;
}
case SEVERITY_FATAL_ERROR: {
if (!fContinueAfterFatalError) {
throw new XNIException(message);
}
break;
}
}
return message;
}
return new Location(){
public int getColumnNumber(){
return location.getColumnNumber();
}
public int getLineNumber(){
return location.getLineNumber();
}
public String getPublicId(){
return location.getPublicId();
}
public String getSystemId(){
return location.getLiteralSystemId();
}
public int getCharacterOffset(){
return location.getCharacterOffset();
}
public String getLocationURI(){
return "";
}
};
}
}