source: release-kits/lirk3/resources/gs3-release-maker/apache-ant-1.6.5/src/main/org/apache/tools/ant/filters/StringInputStream.java@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 1.5 KB
Line 
1/*
2 * Copyright 2002-2004 The Apache Software Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17package org.apache.tools.ant.filters;
18
19import java.io.IOException;
20import java.io.InputStream;
21import java.io.StringReader;
22
23import org.apache.tools.ant.util.ReaderInputStream;
24
25/**
26 * Wraps a String as an InputStream.
27 *
28 */
29public class StringInputStream extends ReaderInputStream {
30
31 /**
32 * Composes a stream from a String
33 *
34 * @param source The string to read from. Must not be <code>null</code>.
35 */
36 public StringInputStream(String source) {
37 super(new StringReader(source));
38 }
39
40 /**
41 * Composes a stream from a String with the specified encoding
42 *
43 * @param source The string to read from. Must not be <code>null</code>.
44 * @param encoding The encoding scheme. Also must not be <CODE>null</CODE>.
45 */
46 public StringInputStream(String source, String encoding) {
47 super(new StringReader(source), encoding);
48 }
49
50}
Note: See TracBrowser for help on using the repository browser.