|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
StreamFactory.java | - | - | - | - |
|
1 |
/*
|
|
2 |
* Joey and its relative products are published under the terms
|
|
3 |
* of the Apache Software License.
|
|
4 |
*/
|
|
5 |
package org.asyrinx.brownie.core.io.sf;
|
|
6 |
|
|
7 |
import java.io.IOException;
|
|
8 |
import java.io.InputStream;
|
|
9 |
import java.io.OutputStream;
|
|
10 |
|
|
11 |
/**
|
|
12 |
* @author Akima
|
|
13 |
*/
|
|
14 |
public interface StreamFactory { |
|
15 |
|
|
16 |
public InputStream newInput(Object key) throws IOException; |
|
17 |
|
|
18 |
public OutputStream newOutput(Object key) throws IOException; |
|
19 |
} |
|