From 302f6949ab59d19937330d2af439970301f53a90 Mon Sep 17 00:00:00 2001 From: Otis Gospodnetic Date: Sun, 15 Sep 2002 00:09:23 +0000 Subject: [PATCH] - Added javadoc skeletons for a few methods. git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150821 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/de/lanlab/larm/storage/StoragePipeline.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/StoragePipeline.java b/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/StoragePipeline.java index 00f4aae1a03..c2f69d86922 100644 --- a/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/StoragePipeline.java +++ b/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/StoragePipeline.java @@ -68,7 +68,6 @@ import java.util.Collection; */ public class StoragePipeline implements DocumentStorage, LinkStorage { - private boolean isOpen; private boolean isLinkStorageOpen; private ArrayList docStorages; @@ -86,7 +85,6 @@ public class StoragePipeline implements DocumentStorage, LinkStorage linkStorages = new ArrayList(); } - /** * open all docStorages */ @@ -101,7 +99,6 @@ public class StoragePipeline implements DocumentStorage, LinkStorage isOpen = true; } - /** * store the doc into all docStorages * document is discarded if a storage.store() returns null @@ -152,6 +149,10 @@ public class StoragePipeline implements DocumentStorage, LinkStorage linkStorages.add(storage); } + /** + * Describe openLinkStorage method here. + * + */ public void openLinkStorage() { for (Iterator it = linkStorages.iterator(); it.hasNext(); ) @@ -161,6 +162,12 @@ public class StoragePipeline implements DocumentStorage, LinkStorage isLinkStorageOpen = true; } + /** + * Describe storeLinks method here. + * + * @param c a Collection value + * @return a Collection value + */ public Collection storeLinks(Collection c) { for(Iterator it = linkStorages.iterator(); it.hasNext();)