minchau 2003/10/22 11:59:07
Modified: java/src/org/apache/xml/dtm/ref Tag: xslt20-compiled
DTMNodeProxy.java DTMNamedNodeMap.java
DTMDocumentImpl.java DTMTreeWalker.java
DTMDefaultBase.java
Log:
javadoc update for @xsl.usage tag
Revision Changes Path
No revision
No revision
1.17.4.1 +1 -1
xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNodeProxy.java
Index: DTMNodeProxy.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNodeProxy.java,v
retrieving revision 1.17
retrieving revision 1.17.4.1
diff -u -r1.17 -r1.17.4.1
--- DTMNodeProxy.java 1 Apr 2003 19:14:05 -0000 1.17
+++ DTMNodeProxy.java 22 Oct 2003 18:59:07 -0000 1.17.4.1
@@ -76,7 +76,6 @@
import org.w3c.dom.Text;
/**
- * <meta name="usage" content="internal"/>
* <code>DTMNodeProxy</code> presents a DOM Node API front-end to the DTM
model.
* <p>
* It does _not_ attempt to address the "node identity" question; no effort
@@ -88,6 +87,7 @@
* DTMNodeProxy may be subclassed further to present specific DOM node types.
*
* @see org.w3c.dom
+ * @xsl.usage internal
*/
public class DTMNodeProxy
implements Node, Document, Text, Element, Attr,
1.6.4.1 +2 -2
xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNamedNodeMap.java
Index: DTMNamedNodeMap.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMNamedNodeMap.java,v
retrieving revision 1.6
retrieving revision 1.6.4.1
diff -u -r1.6 -r1.6.4.1
--- DTMNamedNodeMap.java 1 Apr 2003 19:14:05 -0000 1.6
+++ DTMNamedNodeMap.java 22 Oct 2003 18:59:07 -0000 1.6.4.1
@@ -63,7 +63,6 @@
import org.w3c.dom.Node;
/**
- * <meta name="usage" content="internal"/>
* DTMNamedNodeMap is a quickie (as opposed to quick) implementation of the
DOM's
* NamedNodeMap interface, intended to support DTMProxy's getAttributes()
* call.
@@ -76,6 +75,7 @@
* ***** Also note that there's no fastpath for the by-name query; we search
* linearly until we find it or fail to find it. Again, that could be
* optimized at some cost in object creation/storage.
+ * @xsl.usage internal
*/
public class DTMNamedNodeMap implements NamedNodeMap
{
@@ -294,8 +294,8 @@
}
/**
- * <meta name="usage" content="internal"/>
* Simple implementation of DOMException.
+ * @xsl.usage internal
*/
public class DTMException extends org.w3c.dom.DOMException
{
1.11.2.1 +1 -1
xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDocumentImpl.java
Index: DTMDocumentImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDocumentImpl.java,v
retrieving revision 1.11
retrieving revision 1.11.2.1
diff -u -r1.11 -r1.11.2.1
--- DTMDocumentImpl.java 23 Jun 2003 15:23:40 -0000 1.11
+++ DTMDocumentImpl.java 22 Oct 2003 18:59:07 -0000 1.11.2.1
@@ -1772,12 +1772,12 @@
}
/**
- * <meta name="usage" content="internal"/>
* Get the depth level of this node in the tree (equals 1 for
* a parentless node).
*
* @param nodeHandle The node id.
* @return the number of ancestors, plus one
+ * @xsl.usage internal
*/
public short getLevel(int nodeHandle) {
short count = 0;
1.4.6.1 +1 -1
xml-xalan/java/src/org/apache/xml/dtm/ref/DTMTreeWalker.java
Index: DTMTreeWalker.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMTreeWalker.java,v
retrieving revision 1.4
retrieving revision 1.4.6.1
diff -u -r1.4 -r1.4.6.1
--- DTMTreeWalker.java 30 Jan 2003 18:46:17 -0000 1.4
+++ DTMTreeWalker.java 22 Oct 2003 18:59:07 -0000 1.4.6.1
@@ -64,13 +64,13 @@
import org.xml.sax.ext.LexicalHandler;
/**
- * <meta name="usage" content="advanced"/>
* This class does a pre-order walk of the DTM tree, calling a ContentHandler
* interface as it goes. As such, it's more like the Visitor design pattern
* than like the DOM's TreeWalker.
*
* I think normally this class should not be needed, because
* of DTM#dispatchToEvents.
+ * @xsl.usage advanced
*/
public class DTMTreeWalker
{
1.37.2.1 +4 -4
xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDefaultBase.java
Index: DTMDefaultBase.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/DTMDefaultBase.java,v
retrieving revision 1.37
retrieving revision 1.37.2.1
diff -u -r1.37 -r1.37.2.1
--- DTMDefaultBase.java 23 Jun 2003 15:23:40 -0000 1.37
+++ DTMDefaultBase.java 22 Oct 2003 18:59:07 -0000 1.37.2.1
@@ -1883,12 +1883,12 @@
}
/**
- * <meta name="usage" content="internal"/>
* Get the depth level of this node in the tree (equals 1 for
* a parentless node).
*
* @param nodeHandle The node id.
* @return the number of ancestors, plus one
+ * @xsl.usage internal
*/
public short getLevel(int nodeHandle)
{
@@ -1898,11 +1898,11 @@
}
/**
- * <meta name="usage" content="internal"/>
* Get the identity of this node in the tree
*
* @param nodeHandle The node handle.
* @return the node identity
+ * @xsl.usage internal
*/
public int getNodeIdent(int nodeHandle)
{
@@ -1915,11 +1915,11 @@
}
/**
- * <meta name="usage" content="internal"/>
* Get the handle of this node in the tree
*
* @param nodeId The node identity.
* @return the node handle
+ * @xsl.usage internal
*/
public int getNodeHandle(int nodeId)
{
@@ -1990,12 +1990,12 @@
}
/**
- * <meta name="usage" content="internal"/>
* Return the name of the character encoding scheme
* in which the document entity is expressed.
*
* @param nodeHandle The node id, which can be any valid node handle.
* @return the document encoding String object.
+ * @xsl.usage internal
*/
public String getDocumentEncoding(int nodeHandle)
{
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]