|
From: <go...@us...> - 2003-09-24 01:46:42
|
Update of /cvsroot/archive-crawler/ArchiveOpenCrawler/src/org/archive/crawler/io In directory sc8-pr-cvs1:/tmp/cvs-serv27393/src/org/archive/crawler/io Added Files: RecordingOutputStream.java Log Message: skeletal http-recording (in progress) --- NEW FILE: RecordingOutputStream.java --- /* * ReplayableOutputStream.java * Created on Sep 23, 2003 * * $Header: /cvsroot/archive-crawler/ArchiveOpenCrawler/src/org/archive/crawler/io/RecordingOutputStream.java,v 1.1 2003/09/24 01:46:37 gojomo Exp $ */ package org.archive.crawler.io; import java.io.IOException; import java.io.OutputStream; /** * @author gojomo * */ public class RecordingOutputStream extends OutputStream { /* (non-Javadoc) * @see java.io.OutputStream#write(int) */ public void write(int b) throws IOException { // TODO Auto-generated method stub } } |