com.sapportals.wcm.util.html
Interface IHTMLContentHandler
- All Known Implementing Classes:
- HTMLFilterImpl, HTMLStreamWriter
- public interface IHTMLContentHandler
IHTMLContentHandler receives events from a IHTMLReader.
For each event the IHTMLReader calls the
corresponding method in the content handler. This maps as follows:
|
Document Part
|
Event
|
Notes
|
|
(start of input)
|
startDocument
|
This event precedes any other event.
|
|
(end of input)
|
endDocument
|
This is the last event for a document.
|
|
<tag...>, <tag.../>
|
startElement
|
This event is generated for all tags which are not an end tag (e.g.
start with '</'. Note that for empty tags (e.g. ending with '/>')
startElement is the only event generated. There will never be an
endElement event.
|
|
</tag>
|
endElement
|
A tag starting with '</' will generate this event.
|
|
otherwise
|
characters
|
The following parts of a HTML document will generate this event:
characters between tags, DOCTYPE declarations, processing instructions,
CDATA sections, any characters between start/end of script
or pre tags.
|
Copyright (c) SAP AG 2001-2002
|
Method Summary |
void |
characters(char[] ch,
int start,
int length)
Notification of a character event. |
void |
endDocument()
Notification that the document is finished. |
void |
endElement(IHTMLElement element)
Notification that an end tag was encountered (e.g. starting with '</').
|
void |
startDocument()
Notification that the document is about to start. |
void |
startElement(IHTMLElementStart element)
Notification that a tag was encountered. |
characters
public void characters(char[] ch,
int start,
int length)
throws HTMLException
- Notification of a character event. The characters of the event are found in
ch at offset start . There are length
number of characters.
The content of the buffer before start or after start +
length is undefined. Modification of the character array is strictly
forbidden. The content of the array is undefined after this method returns.
- Parameters:
ch - array holding characters of eventstart - where in the array the characters beginlength - number of characters in event
- Throws:
HTMLException - to indicate error in event handling
endDocument
public void endDocument()
throws HTMLException
- Notification that the document is finished.
- Throws:
HTMLException - to indicate error in event handling
endElement
public void endElement(IHTMLElement element)
throws HTMLException
- Notification that an end tag was encountered (e.g. starting with '</').
The element paramter is only valid for the duration of the call. The
content of element are undefined when the method returns. See
IHTMLElement for further information.
- Parameters:
element - TBD: Description of the incoming method parameter
- Throws:
HTMLException - to indicate error in event handling
startDocument
public void startDocument()
throws HTMLException
- Notification that the document is about to start.
- Throws:
HTMLException - to indicate error in event handling
startElement
public void startElement(IHTMLElementStart element)
throws HTMLException
- Notification that a tag was encountered. The element paramter is only valid
for the duration of the call. The content of element are undefined when the
method returns. See
IHTMLElementStart for further information.
- Parameters:
element - TBD: Description of the incoming method parameter
- Throws:
HTMLException - to indicate error in event handling
Copyright 2006 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Microsoft, Windows, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation. Oracle is a registered trademark of Oracle Corporation. UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group. Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of Citrix Systems, Inc. HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C, World Wide Web Consortium, Massachusetts Institute of Technology. Java is a registered trademark of Sun Microsystems, Inc. JavaScript is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by Netscape. MaxDB is a trademark of MySQL AB, Sweden. SAP, R/3, mySAP, mySAP.com, xApps, xApp, SAP NetWeaver, and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and in several other countries all over the world. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary. These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty.