elena 2002/09/25 13:45:13
Modified: java/docs xni-config.xml xni-core.xml
Log:
update xni doc to reflect XNI changes
Revision Changes Path
1.7 +23 -0 xml-xerces/java/docs/xni-config.xml
Index: xni-config.xml
===================================================================
RCS file: /home/cvs/xml-xerces/java/docs/xni-config.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xni-config.xml 29 Jan 2002 17:13:07 -0000 1.6
+++ xni-config.xml 25 Sep 2002 20:45:13 -0000 1.7
@@ -102,6 +102,22 @@
<tr>
<td>
<code>
+ public Boolean getDefaultFeature(
+ String featureId);
+ </code>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <code>
+ public void getDefaultProperty(
+ String propertyId);
+ </code>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <code>
public void setFeature(
String featureId,
boolean state
@@ -782,6 +798,13 @@
public void setDocumentHandler(
<link idref='xni-core'
anchor='document-handler'>XMLDocumentHandler</link> handler
);
+ </code>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <code>
+ public <link idref='xni-core'
anchor='document-handler'>XMLDocumentHandler</link> getDocumentHandler();
</code>
</td>
</tr>
1.6 +4 -4 xml-xerces/java/docs/xni-core.xml
Index: xni-core.xml
===================================================================
RCS file: /home/cvs/xml-xerces/java/docs/xni-core.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xni-core.xml 29 Aug 2002 16:07:00 -0000 1.5
+++ xni-core.xml 25 Sep 2002 20:45:13 -0000 1.6
@@ -1260,10 +1260,10 @@
// XMLDocumentHandler methods
public void startDocument(<link anchor='locator'>XMLLocator</link>
- locator, String encoding, <link anchor="augs">Augmentations</link> augs)
+ locator, String encoding, <link
anchor='namespaceContext'>NamespaceContext</link> namespaceContext, <link
anchor="augs">Augmentations</link> augs)
throws <link anchor='exception'>XNIException</link> {
if (fDocumentHandler != null) {
- fDocumentHandler.startDocument(locator, encoding, augs);
+ fDocumentHandler.startDocument(locator, encoding, namespaceContext,
augs);
}
}
@@ -1301,7 +1301,7 @@
fDocumentHandler.processingInstruction(target, data, augs);
}
}
-
+ // deprecated
public void startPrefixMapping(String prefix, String uri, <link
anchor="augs">Augmentations</link> augs)
throws <link anchor='exception'>XNIException</link> {
@@ -1309,7 +1309,7 @@
fDocumentHandler.startPrefixMapping(prefix, uri, augs);
}
}
-
+ // deprecated
public void endPrefixMapping(String prefix, <link
anchor="augs">Augmentations</link> augs)
throws <link anchor='exception'>XNIException</link> {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]