Creating nsIExpatTokenizer, an interface that adds methods for setting

callbacks on the expat tokenizer, a wrapper around the expat XML parser.


git-svn-id: svn://10.0.0.236/trunk@22345 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nisheeth%netscape.com 1999-02-27 08:03:36 +00:00
parent fde3db03f4
commit 7a7332eebd
2 changed files with 112 additions and 0 deletions

View File

@ -0,0 +1,56 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL")=0; you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/**
* MODULE NOTES:
* @update nra 2/24/99
*
*/
#ifndef __NSIEXPATTOKENIZER__
#define __NSIEXPATTOKENIZER__
#include "nsISupports.h"
#include "prtypes.h"
#include "nshtmlpars.h"
#include "xmlparse.h"
class CToken;
class nsScanner;
#define NS_IEXPATTOKENIZER_IID \
{0xf86a4380, 0xce17, 0x11d2, {0x80, 0x3f, 0x00, 0x60, 0x08, 0x98, 0x28, 0x77}}
class nsIExpatTokenizer : public nsITokenizer {
public:
/* Methods for setting callbacks on the expat parser */
virtual void SetElementHandler(XML_StartElementHandler start, XML_EndElementHandler end)=0;
virtual void SetCharacterDataHandler(XML_CharacterDataHandler handler)=0;
virtual void SetProcessingInstructionHandler(XML_ProcessingInstructionHandler handler)=0;
virtual void SetDefaultHandler(XML_DefaultHandler handler)=0;
virtual void SetUnparsedEntityDeclHandler(XML_UnparsedEntityDeclHandler handler)=0;
virtual void SetNotationDeclHandler(XML_NotationDeclHandler handler)=0;
virtual void SetExternalEntityRefHandler(XML_ExternalEntityRefHandler handler)=0;
virtual void SetUnknownEncodingHandler(XML_UnknownEncodingHandler handler, void *encodingHandlerData)=0;
};
#endif

View File

@ -0,0 +1,56 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL")=0; you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/**
* MODULE NOTES:
* @update nra 2/24/99
*
*/
#ifndef __NSIEXPATTOKENIZER__
#define __NSIEXPATTOKENIZER__
#include "nsISupports.h"
#include "prtypes.h"
#include "nshtmlpars.h"
#include "xmlparse.h"
class CToken;
class nsScanner;
#define NS_IEXPATTOKENIZER_IID \
{0xf86a4380, 0xce17, 0x11d2, {0x80, 0x3f, 0x00, 0x60, 0x08, 0x98, 0x28, 0x77}}
class nsIExpatTokenizer : public nsITokenizer {
public:
/* Methods for setting callbacks on the expat parser */
virtual void SetElementHandler(XML_StartElementHandler start, XML_EndElementHandler end)=0;
virtual void SetCharacterDataHandler(XML_CharacterDataHandler handler)=0;
virtual void SetProcessingInstructionHandler(XML_ProcessingInstructionHandler handler)=0;
virtual void SetDefaultHandler(XML_DefaultHandler handler)=0;
virtual void SetUnparsedEntityDeclHandler(XML_UnparsedEntityDeclHandler handler)=0;
virtual void SetNotationDeclHandler(XML_NotationDeclHandler handler)=0;
virtual void SetExternalEntityRefHandler(XML_ExternalEntityRefHandler handler)=0;
virtual void SetUnknownEncodingHandler(XML_UnknownEncodingHandler handler, void *encodingHandlerData)=0;
};
#endif