bodewig 2003/02/06 06:20:38
Modified: docs/manual/CoreTasks style.html
src/main/org/apache/tools/ant/taskdefs XSLTProcess.java
src/main/org/apache/tools/ant/taskdefs/optional
TraXLiaison.java
Log:
Adapt some @since tags after merge to 1.5 branch
Revision Changes Path
1.27 +1 -1 jakarta-ant/docs/manual/CoreTasks/style.html
Index: style.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/style.html,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- style.html 3 Feb 2003 13:06:48 -0000 1.26
+++ style.html 6 Feb 2003 14:20:38 -0000 1.27
@@ -156,7 +156,7 @@
<td valign="top">Control whether the stylesheet transformer is created
anew for every transform opertaion. If you set this to true, performance
may
suffer, but you may work around a bug in certain Xalan-J versions.
- Default is <code>false</code>. <em>Since Ant 1.6</em>.</td>
+ Default is <code>false</code>. <em>Since Ant 1.5.2</em>.</td>
<td valign="top" align="center">No</td>
</tr>
</table>
1.59 +7 -6
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java
Index: XSLTProcess.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/XSLTProcess.java,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- XSLTProcess.java 1 Feb 2003 04:39:06 -0000 1.58
+++ XSLTProcess.java 6 Feb 2003 14:20:38 -0000 1.59
@@ -113,8 +113,9 @@
/** Classpath to use when trying to load the XSL processor */
private Path classpath = null;
-
- /** implementation to use to communicate with the XSL processor */
+
+ /** The Liason implementation to use to communicate with the XSL
+ * processor */
private XSLTLiaison liaison;
/** Flag which indicates if the stylesheet has been loaded into
@@ -147,6 +148,7 @@
/**
* Whether to style all files in the included directories as well.
+ *
* @since Ant 1.5
*/
private boolean performDirectoryScan = true;
@@ -159,7 +161,7 @@
/**
* whether to reuse Transformer if transforming multiple files.
- * @since 1.6
+ * @since 1.5.2
*/
private boolean reuseLoadedStylesheet = true;
@@ -187,7 +189,7 @@
* <p>Setting this to true may get around a bug in certain
* Xalan-J versions, default is false.</p>
*
- * @since Ant 1.6
+ * @since Ant 1.5.2
*/
public void setReloadStylesheet(boolean b) {
reuseLoadedStylesheet = !b;
@@ -714,7 +716,6 @@
this.value = value;
}
}
-
/**
* Initialize internal instance of XMLCatalog
1.25 +3 -2
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/TraXLiaison.java
Index: TraXLiaison.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/TraXLiaison.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- TraXLiaison.java 6 Feb 2003 12:39:06 -0000 1.24
+++ TraXLiaison.java 6 Feb 2003 14:20:38 -0000 1.25
@@ -117,7 +117,7 @@
/** The In memory version of the stylesheet */
private Templates templates;
-
+
/**
* The modification time of the stylesheet from which the templates
* are read
@@ -284,7 +284,7 @@
* @throws BuildException thrown if there is a problem creating
* the factory.
* @see #setFactory(String)
- * @since Ant 1.6
+ * @since Ant 1.5.2
*/
private TransformerFactory getFactory() throws BuildException {
if (tfactory != null) {
@@ -344,6 +344,7 @@
* this method.
* @param name the output property name.
* @param value the output property value.
+ * @since Ant 1.5
* @since Ant 1.5
*/
public void setOutputProperty(String name, String value) {