FileDocCategorySizeDatePackage
DOMErrorImpl.javaAPI DocAndroid 1.5 API1810Wed May 06 22:41:04 BST 2009org.w3c.domts

DOMErrorImpl

public class DOMErrorImpl extends Object implements DOMError
This is a utility implementation of EventListener that captures all events and provides access to lists of all events by mode

Fields Summary
private final short
severity
private final String
message
private final String
type
private final Object
relatedException
private final Object
relatedData
private final DOMLocator
location
Constructors Summary
public DOMErrorImpl(DOMError src)
Public constructor

    this.severity = src.getSeverity();
    this.message = src.getMessage();
    this.type = src.getType();
    this.relatedException = src.getRelatedException();
    this.relatedData = src.getRelatedData();
    this.location = new DOMLocatorImpl(src.getLocation());
  
Methods Summary
public final org.w3c.dom.DOMLocatorgetLocation()

    return location;
  
public final java.lang.StringgetMessage()

    return message;
  
public final java.lang.ObjectgetRelatedData()

    return relatedData;
  
public final java.lang.ObjectgetRelatedException()

    return relatedException;
  
public final shortgetSeverity()

    return severity;
  
public final java.lang.StringgetType()

    return type;