/src/java/opentss/StreamWriter.java
http://open-tss.googlecode.com/ · Java · 82 lines · 45 code · 17 blank · 20 comment · 0 complexity · 75877c49727871f5766d70fc7c992097 MD5 · raw file
- /**
- * Copyright 2002-2006 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package opentss;
-
- import java.io.IOException;
- import java.io.OutputStream;
-
- /**
- * Writer on top of stream.
- *
- * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
- */
- public class StreamWriter implements Writer {
-
- private OutputStream output;
-
- public StreamWriter(OutputStream output) {
- this.output = output;
- }
-
- public void writeByte(byte b) throws IOException {
- StreamUtil.writeByte(output, b);
- }
-
- public void writeBoolean(boolean b) throws IOException {
- StreamUtil.writeBoolean(output, b);
- }
-
- public void writeChar(char c) throws IOException {
- StreamUtil.writeChar(output, c);
- }
-
- public void writeShort(short s) throws IOException {
- StreamUtil.writeShort(output, s);
- }
-
- public void writeInt(int i) throws IOException {
- StreamUtil.writeInt(output, i);
- }
-
- public void writeLong(long l) throws IOException {
- StreamUtil.writeLong(output, l);
- }
-
- public void writeFloat(float f) throws IOException {
- StreamUtil.writeFloat(output, f);
- }
-
- public void writeDouble(double d) throws IOException {
- StreamUtil.writeDouble(output, d);
- }
-
- public void writeUTF(String str) throws IOException {
- StreamUtil.writeUTF(output, str);
- }
-
- public void write(byte[] bytes, int offset, int length) throws IOException {
- output.write(bytes, offset, length);
- }
-
- public void flush() throws IOException {
- output.flush();
- }
-
- public void close() {
- StreamUtil.close(output);
- }
-
- }