From a410c358e578d8d8bac1fb9a77817593f386814a Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 28 Apr 2004 18:03:33 +0000 Subject: [PATCH] Added JavaDoc comments --- src/helma/objectmodel/db/ExternalizableVector.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/helma/objectmodel/db/ExternalizableVector.java b/src/helma/objectmodel/db/ExternalizableVector.java index 80025f29..45ace410 100644 --- a/src/helma/objectmodel/db/ExternalizableVector.java +++ b/src/helma/objectmodel/db/ExternalizableVector.java @@ -30,9 +30,9 @@ public class ExternalizableVector extends ArrayList implements Externalizable { static final long serialVersionUID = 2316243615310540423L; /** + * Reads an externalized representation of the list from a stream. * - * - * @param in ... + * @param in the input stream to read from * * @throws IOException ... */ @@ -49,9 +49,9 @@ public class ExternalizableVector extends ArrayList implements Externalizable { } /** + * Writes an externalized representation of the list to the stream. * - * - * @param out ... + * @param out the output stream to write to * * @throws IOException ... */