Source code: org/esau/ptarmigan/impl/ByteStreamSource.java
1 /* $Header: /cvsroot/ptarmigan/ptarmigan/src/java/org/esau/ptarmigan/impl/ByteStreamSource.java,v 1.1 2002/09/10 06:24:34 reedesau Exp $ */
2
3 package org.esau.ptarmigan.impl;
4
5 /**
6 * Interface for those filters which feed on InputStreams
7 *
8 * @author Reed Esau
9 * @version $Revision: 1.1 $ $Date: 2002/09/10 06:24:34 $
10 */
11 public interface ByteStreamSource {
12 }
13
14 /*
15 PTARMIGAN MODIFIED BSD LICENSE
16
17 Copyright (c) 2002, Reed Esau (reed.esau@pobox.com) All rights reserved.
18
19 Redistribution and use in source and binary forms, with or without
20 modification, are permitted provided that the following conditions are
21 met:
22
23 Redistributions of source code must retain the above copyright notice,
24 this list of conditions and the following disclaimer.
25
26 Redistributions in binary form must reproduce the above copyright notice,
27 this list of conditions and the following disclaimer in the documentation
28 and/or other materials provided with the distribution.
29
30 Neither the name of the Ptarmigan Project
31 (http://ptarmigan.sourceforge.net) nor the names of its contributors may
32 be used to endorse or promote products derived from this software without
33 specific prior written permission.
34
35 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
36 IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
37 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
39 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
40 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
41 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
42 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
44 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
45 POSSIBILITY OF SUCH DAMAGE.
46 */