public static class ParseExceptionHandler.Impl extends Object implements ParseExceptionHandler
ParseExceptionHandler.Impl| Constructor and Description |
|---|
Impl() |
| Modifier and Type | Method and Description |
|---|---|
void |
foundCharAfterEndOfEndTag(char chr)
Notifies that a character was found after the "/" of an end tag.
|
void |
foundIllegalCharInTag(char chr)
Notifies that an illegal character was found in a tag *****.
|
void |
foundMultipleAttribute(String attrName,
Object oldAttrValue)
Notifies the occurence of a duplicate attribute declaration
within a start tag.
|
void |
foundUnexpectedEndOfDocument() |
public void foundMultipleAttribute(String attrName, Object oldAttrValue)
ParseExceptionHandlerfoundMultipleAttribute in interface ParseExceptionHandlerattrName - a non-empty String
representing the name of the attribute.oldAttrValue - an Object which is either a String
representing the value of the attribute
or the object AttributesImpl.NO_VALUE
which signifies the absence of a value.
Here the old value (which is overwritten in the attribute list)
should be passed to the application.
****** it is not clear to me
whether the ordering of the attribute list is significant.
The former occurence of the attribute is lost. **** is this true?public void foundIllegalCharInTag(char chr)
ParseExceptionHandlerfoundIllegalCharInTag in interface ParseExceptionHandlerchr - the illegal char value.public void foundCharAfterEndOfEndTag(char chr)
ParseExceptionHandlerfoundCharAfterEndOfEndTag in interface ParseExceptionHandlerchr - the illegal char value.public void foundUnexpectedEndOfDocument()
foundUnexpectedEndOfDocument in interface ParseExceptionHandlerCopyright © 2012–2018 Simuline Organization (l2r). All rights reserved.