1 24 25 package org.objectweb.dream.channel; 26 27 import java.io.IOException ; 28 import java.io.OutputStream ; 29 30 import org.objectweb.dream.AbstractComponent; 31 import org.objectweb.dream.util.EmptyStringArray; 32 33 36 public class SendByteStreamImpl extends AbstractComponent implements SendByte 37 { 38 39 42 public void sendByte(Object output, int b) throws IOException  43 { 44 ((OutputStream ) output).write(b); 45 } 46 47 51 54 public String [] listFc() 55 { 56 return EmptyStringArray.EMPTY_STRING_ARRAY; 57 } 58 } | Popular Tags |