|
|
|
|
|
|
|
*/ |
|
/* |
|
* Licensed to the Apache Software Foundation (ASF) under one |
|
* or more contributor license agreements. See the NOTICE file |
|
* distributed with this work for additional information |
|
* regarding copyright ownership. The ASF licenses this file |
|
* to you 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 com.sun.org.apache.xml.internal.serializer.dom3; |
|
|
|
import org.w3c.dom.DOMError; |
|
import org.w3c.dom.DOMLocator; |
|
|
|
/** |
|
* Implementation of the DOM Level 3 DOMError interface. |
|
* |
|
* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ERROR-Interfaces-DOMError'>DOMError Interface definition from Document Object Model (DOM) Level 3 Core Specification</a>. |
|
* |
|
* @xsl.usage internal |
|
*/ |
|
|
|
final class DOMErrorImpl implements DOMError { |
|
|
|
/** private data members */ |
|
|
|
|
|
private short fSeverity = DOMError.SEVERITY_WARNING; |
|
|
|
|
|
private String fMessage = null; |
|
|
|
|
|
private String fType; |
|
|
|
|
|
private Exception fException = null; |
|
|
|
|
|
private Object fRelatedData; |
|
|
|
|
|
private DOMLocatorImpl fLocation = new DOMLocatorImpl(); |
|
|
|
|
|
// |
|
// Constructors |
|
// |
|
|
|
|
|
|
|
*/ |
|
DOMErrorImpl () { |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
DOMErrorImpl(short severity, String message, String type) { |
|
fSeverity = severity; |
|
fMessage = message; |
|
fType = type; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
DOMErrorImpl(short severity, String message, String type, |
|
Exception exception) { |
|
fSeverity = severity; |
|
fMessage = message; |
|
fType = type; |
|
fException = exception; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
DOMErrorImpl(short severity, String message, String type, |
|
Exception exception, Object relatedData, DOMLocatorImpl location) { |
|
fSeverity = severity; |
|
fMessage = message; |
|
fType = type; |
|
fException = exception; |
|
fRelatedData = relatedData; |
|
fLocation = location; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public short getSeverity() { |
|
return fSeverity; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public String getMessage() { |
|
return fMessage; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public DOMLocator getLocation() { |
|
return fLocation; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public Object getRelatedException(){ |
|
return fException; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public String getType(){ |
|
return fType; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public Object getRelatedData(){ |
|
return fRelatedData; |
|
} |
|
|
|
public void reset(){ |
|
fSeverity = DOMError.SEVERITY_WARNING; |
|
fException = null; |
|
fMessage = null; |
|
fType = null; |
|
fRelatedData = null; |
|
fLocation = null; |
|
} |
|
|
|
}// class DOMErrorImpl |