From: Brad <bra...@us...> - 2005-10-19 01:22:45
|
Update of /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/localresourcestore In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv901/src/java/org/archive/wayback/localresourcestore Modified Files: LocalARCResourceStore.java Log Message: lots of javadoc comments Index: LocalARCResourceStore.java =================================================================== RCS file: /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/localresourcestore/LocalARCResourceStore.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LocalARCResourceStore.java 18 Oct 2005 02:30:49 -0000 1.1 --- LocalARCResourceStore.java 19 Oct 2005 01:22:37 -0000 1.2 *************** *** 1,2 **** --- 1,25 ---- + /* LocalARCResourceStore + * + * Created on 2005/10/18 14:00:00 + * + * Copyright (C) 2005 Internet Archive. + * + * This file is part of the Wayback Machine (crawler.archive.org). + * + * Wayback Machine is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or + * any later version. + * + * Wayback Machine is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser Public License for more details. + * + * You should have received a copy of the GNU Lesser Public License + * along with Wayback Machine; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package org.archive.wayback.localresourcestore; *************** *** 11,14 **** --- 34,43 ---- import org.archive.wayback.core.Resource; + /** + * Implements ResourceStore using a local directory of ARC files. + * + * @author Brad Tofel + * @version $Date$, $Revision$ + */ public class LocalARCResourceStore implements ResourceStore { private static final String RESOURCE_PATH = "resourcestore.arcpath"; *************** *** 18,24 **** private String path = null; public LocalARCResourceStore() { super(); - // TODO Auto-generated constructor stub } --- 47,55 ---- private String path = null; + /** + * Constructor + */ public LocalARCResourceStore() { super(); } *************** *** 56,60 **** */ public static void main(String[] args) { - // TODO Auto-generated method stub } --- 87,90 ---- |