mmidy 00/12/13 11:47:22
Modified: java/src/org/apache/xalan/templates AVTPartSimple.java
AVTPartXPath.java Constants.java
Log:
Javadoc updates
Revision Changes Path
1.8 +1 -1
xml-xalan/java/src/org/apache/xalan/templates/AVTPartSimple.java
Index: AVTPartSimple.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/AVTPartSimple.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- AVTPartSimple.java 2000/12/12 19:10:51 1.7
+++ AVTPartSimple.java 2000/12/13 19:47:20 1.8
@@ -85,7 +85,7 @@
/**
* Get the AVT part as the original string.
*
- * NEEDSDOC ($objectName$) @return
+ * @return the AVT part as the original string.
*/
public String getSimpleString()
{
1.9 +8 -6
xml-xalan/java/src/org/apache/xalan/templates/AVTPartXPath.java
Index: AVTPartXPath.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/AVTPartXPath.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- AVTPartXPath.java 2000/12/12 19:10:52 1.8
+++ AVTPartXPath.java 2000/12/13 19:47:20 1.9
@@ -78,9 +78,8 @@
/**
* Construct a simple AVT part.
- * @param val A pure string section of an AVT.
*
- * NEEDSDOC @param xpath
+ * @param xpath Xpath section of AVT
*/
public AVTPartXPath(XPath xpath)
{
@@ -89,13 +88,14 @@
/**
* Construct a simple AVT part.
+ *
* @param val A pure string section of an AVT.
* @param nsNode An object which can be used to determine the
* Namespace Name (URI) for any Namespace prefix used in the XPath.
* Usually this is based on the context where the XPath was specified,
* such as a node within a Stylesheet.
- * NEEDSDOC @param xpathProcessor
- * NEEDSDOC @param factory
+ * @param xpathProcessor XPath parser
+ * @param factory XPath factory
* @param liaison An XPathContext object, providing infomation specific
* to this invocation and this thread. Maintains SAX output state,
* variables, error handler and so on, so the transformation/XPath
@@ -105,7 +105,9 @@
* TODO: Fix or remove this unused c'tor.
*/
public AVTPartXPath(
- String val, org.apache.xml.utils.PrefixResolver nsNode,
XPathParser xpathProcessor, XPathFactory factory, XPathContext liaison)
+ String val, org.apache.xml.utils.PrefixResolver nsNode,
+ XPathParser xpathProcessor, XPathFactory factory,
+ XPathContext liaison)
throws javax.xml.transform.TransformerException
{
m_xpath = new XPath(val, null, nsNode, XPath.SELECT);
@@ -114,7 +116,7 @@
/**
* Get the AVT part as the original string.
*
- * NEEDSDOC ($objectName$) @return
+ * @return the AVT part as the original string.
*/
public String getSimpleString()
{
1.12 +20 -30
xml-xalan/java/src/org/apache/xalan/templates/Constants.java
Index: Constants.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/Constants.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- Constants.java 2000/12/13 17:58:23 1.11
+++ Constants.java 2000/12/13 19:47:20 1.12
@@ -410,49 +410,41 @@
ATTRVAL_OUTPUT_METHOD_XML = "xml",
ATTRVAL_OUTPUT_METHOD_TEXT = "text";
- // For space-att
-
- /* NEEDSDOC */
+
+ /* For space-att*/
public static final int ATTRVAL_PRESERVE = 1, ATTRVAL_STRIP = 2;
-
- // For indent-result
- /** NEEDSDOC Field ATTRVAL_YES, ATTRVAL_NO */
+
+ /** For indent-result */
public static final boolean ATTRVAL_YES = true, ATTRVAL_NO = false;
-
- // For letter-value attribute (part of conversion attributes).
- /** NEEDSDOC Field ATTRVAL_ALPHABETIC, ATTRVAL_OTHER, ATTRVAL_TRADITIONAL
*/
+
+ /** For letter-value attribute (part of conversion attributes). */
public static final String ATTRVAL_ALPHABETIC = "alphabetic",
ATTRVAL_OTHER = "other",
ATTRVAL_TRADITIONAL = "traditional";
- // For level attribute in xsl:number.
-
- /** NEEDSDOC Field ATTRVAL_SINGLE, ATTRVAL_MULTI, ATTRVAL_ANY */
+
+ /** For level attribute in xsl:number. */
public static final String ATTRVAL_SINGLE = "single",
ATTRVAL_MULTI = "multiple", ATTRVAL_ANY = "any";
-
- // For Stylesheet-prefix and result-prefix in xsl:namespace-alias
- /** NEEDSDOC Field ATTRVAL_DEFAULT_PREFIX */
+
+ /** For Stylesheet-prefix and result-prefix in xsl:namespace-alias
*/
public static final String ATTRVAL_DEFAULT_PREFIX = "#default";
- // Integer equivelents for above
-
- /** NEEDSDOC Field NUMBERLEVEL_SINGLE, NUMBERLEVEL_MULTI, NUMBERLEVEL_ANY,
MAX_MULTI_COUNTING_DEPTH */
+
+ /** Integer equivelents for above */
public static final int NUMBERLEVEL_SINGLE = 1, NUMBERLEVEL_MULTI = 2,
NUMBERLEVEL_ANY = 3, MAX_MULTI_COUNTING_DEPTH = 32;
-
- // some stuff for my patterns-by-example
- /** NEEDSDOC Field ATTRVAL_THIS, ATTRVAL_PARENT, ATTRVAL_ANCESTOR,
ATTRVAL_ID */
+
+ /** some stuff for my patterns-by-example */
public static final String ATTRVAL_THIS = ".", ATTRVAL_PARENT = "..",
ATTRVAL_ANCESTOR = "ancestor", ATTRVAL_ID =
"id";
-
- // Stuff for sorting
- /** NEEDSDOC Field ATTRVAL_DATATYPE_TEXT, ATTRVAL_DATATYPE_NUMBER,
ATTRVAL_ORDER_ASCENDING, ATTRVAL_ORDER_DESCENDING, ATTRVAL_CASEORDER_UPPER,
ATTRVAL_CASEORDER_LOWER */
+
+ /** Stuff for sorting */
public static final String ATTRVAL_DATATYPE_TEXT = "text",
ATTRVAL_DATATYPE_NUMBER = "number",
ATTRVAL_ORDER_ASCENDING = "ascending",
@@ -460,15 +452,13 @@
ATTRVAL_CASEORDER_UPPER = "upper-first",
ATTRVAL_CASEORDER_LOWER = "lower-first";
- // some stuff for Decimal-format
-
- /** NEEDSDOC Field ATTRVAL_INFINITY, ATTRVAL_NAN, DEFAULT_DECIMAL_FORMAT
*/
+
+ /** some stuff for Decimal-format */
public static final String ATTRVAL_INFINITY = "Infinity",
ATTRVAL_NAN = "NaN",
DEFAULT_DECIMAL_FORMAT = "#default";
-
- // temp dummy
- /** NEEDSDOC Field ATTRNAME_XXXX */
+
+ /** temp dummy */
public static final String ATTRNAME_XXXX = "XXXX";
}