otis 2002/09/14 17:09:23
Modified: contributions/webcrawler-LARM/src/de/lanlab/larm/storage
StoragePipeline.java
Log:
- Added javadoc skeletons for a few methods.
Revision Changes Path
1.4 +11 -4 jakarta-lucene-sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/StoragePipeline.java
Index: StoragePipeline.java
===================================================================
RCS file: /home/cvs/jakarta-lucene-sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/storage/StoragePipeline.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- StoragePipeline.java 15 Sep 2002 00:01:13 -0000 1.3
+++ StoragePipeline.java 15 Sep 2002 00:09:23 -0000 1.4
@@ -68,7 +68,6 @@
*/
public class StoragePipeline implements DocumentStorage, LinkStorage
{
-
private boolean isOpen;
private boolean isLinkStorageOpen;
private ArrayList docStorages;
@@ -86,7 +85,6 @@
linkStorages = new ArrayList();
}
-
/**
* open all docStorages
*/
@@ -101,7 +99,6 @@
isOpen = true;
}
-
/**
* store the doc into all docStorages
* document is discarded if a storage.store() returns null
@@ -152,6 +149,10 @@
linkStorages.add(storage);
}
+ /**
+ * Describe <code>openLinkStorage</code> method here.
+ *
+ */
public void openLinkStorage()
{
for (Iterator it = linkStorages.iterator(); it.hasNext(); )
@@ -161,6 +162,12 @@
isLinkStorageOpen = true;
}
+ /**
+ * Describe <code>storeLinks</code> method here.
+ *
+ * @param c a <code>Collection</code> value
+ * @return a <code>Collection</code> value
+ */
public Collection storeLinks(Collection c)
{
for(Iterator it = linkStorages.iterator(); it.hasNext();)
--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>
|