peiyongz 2004/09/22 13:38:45
Modified: c/src/xercesc/framework/psvi PSVIHandler.hpp
Log:
provide default implementation and documentation
Revision Changes Path
1.9 +18 -4 xml-xerces/c/src/xercesc/framework/psvi/PSVIHandler.hpp
Index: PSVIHandler.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/PSVIHandler.hpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- PSVIHandler.hpp 21 Sep 2004 16:09:37 -0000 1.8
+++ PSVIHandler.hpp 22 Sep 2004 20:38:45 -0000 1.9
@@ -16,6 +16,9 @@
/*
* $Log$
+ * Revision 1.9 2004/09/22 20:38:45 peiyongz
+ * provide default implementation and documentation
+ *
* Revision 1.8 2004/09/21 16:09:37 peiyongz
* Handle partial PSVIElement
*
@@ -89,12 +92,23 @@
, PSVIElement * elementInfo
) = 0;
+ /**
+ * Receive notification of partial PSVI properties of an element.
+ * This callback is made right after the psviAttributes
+ * call for non-empty element.
+ *
+ * @param localName The name of the element upon which start tag
+ * these attributes were encountered.
+ * @param uri The namespace to which the element is bound
+ * @param elementInfo Object containing the element's partial PSVI properties
+ */
virtual void handlePartialElementPSVI
(
- const XMLCh* const localName
- , const XMLCh* const uri
- , PSVIElement * elementInfo
- ) = 0;
+ const XMLCh* const localName
+ , const XMLCh* const uri
+ , PSVIElement * elementInfo
+ )
+ { }
/**
* Enables PSVI information about attributes to be passed back to the
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]