vgritsenko 2003/01/30 19:03:51
Modified: src/java/org/apache/cocoon/caching CachedResponse.java
PipelineCacheKey.java
Log:
fix javadoc
Revision Changes Path
1.4 +5 -3
xml-cocoon2/src/java/org/apache/cocoon/caching/CachedResponse.java
Index: CachedResponse.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/caching/CachedResponse.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- CachedResponse.java 4 Jul 2002 11:46:05 -0000 1.3
+++ CachedResponse.java 31 Jan 2003 03:03:51 -0000 1.4
@@ -50,6 +50,8 @@
*/
package org.apache.cocoon.caching;
+import java.io.Serializable;
+
import org.apache.excalibur.source.SourceValidity;
/**
@@ -64,7 +66,7 @@
* @version CVS $Id$
*/
public final class CachedResponse
-implements java.io.Serializable {
+ implements Serializable {
private SourceValidity[] validityObjects;
private byte[] response;
@@ -74,7 +76,7 @@
*
* @param validityObjects The SourceValidity objects in the order
* they occured in the pipeline
- * @param saxFragment The cached sax stream or character stream
+ * @param response The cached sax stream or character stream
*/
public CachedResponse(SourceValidity[] validityObjects,
byte[] response) {
1.20 +3 -2
xml-cocoon2/src/java/org/apache/cocoon/caching/PipelineCacheKey.java
Index: PipelineCacheKey.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/caching/PipelineCacheKey.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- PipelineCacheKey.java 8 Aug 2002 02:55:23 -0000 1.19
+++ PipelineCacheKey.java 31 Jan 2003 03:03:51 -0000 1.20
@@ -50,6 +50,7 @@
*/
package org.apache.cocoon.caching;
+import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
@@ -61,7 +62,7 @@
* @version CVS $Id$
*/
public final class PipelineCacheKey
- implements java.io.Serializable {
+ implements Serializable {
/** The keys */
private List keys;
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]