Uses of Class
java.io.OutputStream

Packages that use OutputStream
com.intel.bluetooth   
com.intel.bluetooth.btspp   
com.intel.bluetooth.gcf.socket   
de.cau.cs.kieler.core.util General purpose utility classes in the style of java.util
de.cau.cs.kieler.kiml.export Base classes for the graph export. 
de.cau.cs.kieler.kiml.export.exporter Exporter implementations. 
de.cau.cs.kieler.kiml.grana.batch Classes related to the batch execution of analyses. 
de.cau.cs.kieler.kiml.graphviz.layouter Connection of the Graphviz layouter to the KIML interface for automatic layout. 
de.cau.cs.kieler.kiml.service.formats KIML support for graph formats. 
de.cau.cs.kieler.sim.validator   
de.cau.cs.kieler.synccharts.synchronizer   
de.cau.cs.kieler.synccharts.text.kits   
java.io Input/Output support 
java.net Support for sockets via PC SocketProxy 
java.util Utilities 
javax.microedition.io   
js.tinyvm   
js.tinyvm.io   
lejos.addon.keyboard Support for Bluetooth SPP keyboards 
lejos.io leJOS specific support for java.io 
lejos.nxt Access to NXT sensors, motors, etc. 
lejos.nxt.comm NXT communication classes 
lejos.nxt.rcxcomm Emulation of RCX communication classes 
lejos.pc.comm Communication from the PC to the NXT 
net.sf.antcontrib.cpptasks.compiler   
org.apache.bcel.classfile This package contains the classes that describe the structure of a Java class file and a class file parser. 
org.apache.bcel.util This package contains utility classes for the Byte Code Engineering Library, namely: 
 

Uses of OutputStream in com.intel.bluetooth
 

Methods in com.intel.bluetooth that return OutputStream
static OutputStream MicroeditionConnector.openOutputStream(String name)
           
 

Uses of OutputStream in com.intel.bluetooth.btspp
 

Methods in com.intel.bluetooth.btspp that return OutputStream
 OutputStream Connection.openOutputStream()
           
 

Uses of OutputStream in com.intel.bluetooth.gcf.socket
 

Methods in com.intel.bluetooth.gcf.socket that return OutputStream
 OutputStream SocketConnection.openOutputStream()
           
 

Uses of OutputStream in de.cau.cs.kieler.core.util
 

Subclasses of OutputStream in de.cau.cs.kieler.core.util
 class ForkedOutputStream
          An output stream that can be used to send the same output to multiple output streams.
 

Constructors in de.cau.cs.kieler.core.util with parameters of type OutputStream
ForkedOutputStream(OutputStream stream1, OutputStream stream2)
          Creates a forked output stream that writes to the two given output streams.
ForwardingInputStream(InputStream theinputStream, OutputStream theoutputStream)
          Creates a forwarding input stream with the given input and output streams.
 

Constructor parameters in de.cau.cs.kieler.core.util with type arguments of type OutputStream
ForkedOutputStream(List<OutputStream> theoutputStreams)
          Creates a forked output stream that writes to all output streams in the given list.
 

Uses of OutputStream in de.cau.cs.kieler.kiml.export
 

Methods in de.cau.cs.kieler.kiml.export that return OutputStream
static OutputStream ExportUtil.createOutputStream(String path, boolean isWorkspacePath)
          Creates an output stream to a file that is located in the workspace or in the file system.
 

Methods in de.cau.cs.kieler.kiml.export with parameters of type OutputStream
 void IExporter.doExport(KNode graph, OutputStream stream, MapPropertyHolder options, IKielerProgressMonitor monitor)
          Performs the actual graph export by using the given options and writing the result to the stream.
static void ExportUtil.transformKGraph2Model(String xtendFile, String extension, List<Object> parameters, KNode node, OutputStream outputStream, Resource.Factory resourceFactory, IKielerProgressMonitor monitor, String... involvedMetamodels)
          Transforms a kgraph into another model using a given Xtend transformation file, and writes the model to the output stream.
 

Uses of OutputStream in de.cau.cs.kieler.kiml.export.exporter
 

Methods in de.cau.cs.kieler.kiml.export.exporter with parameters of type OutputStream
 void DotExporter.doExport(KNode graph, OutputStream stream, MapPropertyHolder options, IKielerProgressMonitor monitor)
          Performs the actual graph export by using the given options and writing the result to the stream.
 void GMLExporter.doExport(KNode graph, OutputStream stream, MapPropertyHolder options, IKielerProgressMonitor monitor)
          Performs the actual graph export by using the given options and writing the result to the stream.
 void GraphMLExporter.doExport(KNode graph, OutputStream stream, MapPropertyHolder options, IKielerProgressMonitor monitor)
          Performs the actual graph export by using the given options and writing the result to the stream.
 void KGraphExporter.doExport(KNode graph, OutputStream stream, MapPropertyHolder options, IKielerProgressMonitor monitor)
          Performs the actual graph export by using the given options and writing the result to the stream.
 void OGMLExporter.doExport(KNode graph, OutputStream stream, MapPropertyHolder options, IKielerProgressMonitor monitor)
          Performs the actual graph export by using the given options and writing the result to the stream.
static void GMLExporter.serializeKGraphAsGML(KNode graph, OutputStream outputStream, boolean layoutInformation, IKielerProgressMonitor monitor)
          Serializes the given KGraph using GML.
 

Uses of OutputStream in de.cau.cs.kieler.kiml.grana.batch
 

Methods in de.cau.cs.kieler.kiml.grana.batch with parameters of type OutputStream
 void CSVResultSerializer.serialize(OutputStream outputStream, BatchResult batchResult, IKielerProgressMonitor monitor)
          Serializes a batch result to the given output stream.
 void IBatchResultSerializer.serialize(OutputStream outputStream, BatchResult batchResult, IKielerProgressMonitor monitor)
          Serializes a batch result to the given output stream.
 

Uses of OutputStream in de.cau.cs.kieler.kiml.graphviz.layouter
 

Methods in de.cau.cs.kieler.kiml.graphviz.layouter that return OutputStream
 OutputStream GraphvizTool.input()
          Return the stream that is used to give input to Graphviz.
 

Uses of OutputStream in de.cau.cs.kieler.kiml.service.formats
 

Methods in de.cau.cs.kieler.kiml.service.formats with parameters of type OutputStream
protected  void AbstractEmfHandler.serializeBinary(T graph, OutputStream target, Map<Object,Object> options)
          Serialize a given EMF model to the given output stream.
 

Uses of OutputStream in de.cau.cs.kieler.sim.validator
 

Methods in de.cau.cs.kieler.sim.validator that return OutputStream
static OutputStream ValidatorPlugin.openOutputFile(String fileString)
          Open output file.
static OutputStream ValidatorPlugin.openOutputFileWithExtension(String extension)
           
 

Uses of OutputStream in de.cau.cs.kieler.synccharts.synchronizer
 

Methods in de.cau.cs.kieler.synccharts.synchronizer with parameters of type OutputStream
static void ModelSynchronizer.dumpDiff(EObject model, OutputStream stream)
           
static void ModelSynchronizer.dumpMatch(EObject model, OutputStream stream)
           
static void ModelSynchronizer.dumpPassive(EObject model, OutputStream stream)
           
 

Uses of OutputStream in de.cau.cs.kieler.synccharts.text.kits
 

Methods in de.cau.cs.kieler.synccharts.text.kits with parameters of type OutputStream
 void KitsResource.doSave(OutputStream outputStream, Map<?,?> options)
          Registers SaveOptions and delegates to XtextResource.doSave(OutputStream, Map)
 

Uses of OutputStream in java.io
 

Subclasses of OutputStream in java.io
 class BufferedOutputStream
          This is a minimal implementation of BufferedWriter.
 class ByteArrayOutputStream
           
 class DataOutputStream
          Transmits java data types as bytes over an OutputStream.
 class FileOutputStream
          Writes a stream of bytes to a file.
 class FilterOutputStream
           
 class PrintStream
          Minimal implementation of PrintStream.
 

Fields in java.io declared as OutputStream
protected  OutputStream FilterOutputStream.out
           
 

Methods in java.io with parameters of type OutputStream
 void ByteArrayOutputStream.writeTo(OutputStream os)
           
 

Constructors in java.io with parameters of type OutputStream
BufferedOutputStream(OutputStream out)
          In the standard Java API the constructor accepts a Writer object, such as OutputStreamWriter.
BufferedOutputStream(OutputStream out, int size)
           
BufferedWriter(OutputStream os)
          Deprecated. use OutputStreamWriter instead.
DataOutputStream(OutputStream out)
           
FilterOutputStream(OutputStream out)
           
OutputStreamWriter(OutputStream os)
           
OutputStreamWriter(OutputStream os, String charset)
           
PrintStream(OutputStream os)
           
 

Uses of OutputStream in java.net
 

Methods in java.net that return OutputStream
 OutputStream Socket.getOutputStream()
          Returns the output stream associated with this socket
 

Uses of OutputStream in java.util
 

Methods in java.util with parameters of type OutputStream
 void Properties.store(OutputStream out, String comments)
           
 

Uses of OutputStream in javax.microedition.io
 

Methods in javax.microedition.io that return OutputStream
 OutputStream OutputConnection.openOutputStream()
          Open and return an output stream for a connection.
static OutputStream Connector.openOutputStream(String name)
           
 

Uses of OutputStream in js.tinyvm
 

Methods in js.tinyvm with parameters of type OutputStream
 void TinyVMTool.dump(Binary binary, OutputStream stream, boolean bigEndian)
          Dump binary to stream.
 void TinyVMTool.link(String classpath, String[] classes, boolean all, OutputStream stream, boolean bigEndian, int options, boolean debug)
          Execute tiny vm.
 

Uses of OutputStream in js.tinyvm.io
 

Constructors in js.tinyvm.io with parameters of type OutputStream
BEByteWriter(OutputStream stream)
           
ByteWriter(OutputStream stream)
          Constructor.
LEByteWriter(OutputStream stream)
           
 

Uses of OutputStream in lejos.addon.keyboard
 

Constructors in lejos.addon.keyboard with parameters of type OutputStream
Keyboard(InputStream in, OutputStream out)
          Creates a new Keyboard instance using streams from the keyboard.
 

Uses of OutputStream in lejos.io
 

Constructors in lejos.io with parameters of type OutputStream
LejosOutputStreamWriter(OutputStream os, CharsetEncoder coder, int buffersize)
           
 

Uses of OutputStream in lejos.nxt
 

Subclasses of OutputStream in lejos.nxt
 class LCDOutputStream
          A simple output stream that implements console output.
 

Uses of OutputStream in lejos.nxt.comm
 

Subclasses of OutputStream in lejos.nxt.comm
 class NXTOutputStream
          Implements an OutputStream over Bluetooth.
 

Methods in lejos.nxt.comm that return OutputStream
 OutputStream NXTConnection.openOutputStream()
          Return the OutputStream for this connection
static OutputStream RConsole.openOutputStream()
           
 

Uses of OutputStream in lejos.nxt.rcxcomm
 

Methods in lejos.nxt.rcxcomm that return OutputStream
 OutputStream RCXAbstractPort.getOutputStream()
          Returns an output stream for this RCXPort.
 

Uses of OutputStream in lejos.pc.comm
 

Subclasses of OutputStream in lejos.pc.comm
 class NXTCommOutputStream
          Implementation of OutputStream over NXTComm using Bluetooth.
 

Methods in lejos.pc.comm that return OutputStream
 OutputStream NXTComm.getOutputStream()
          Return an OutputStream for writing a stream of data to the NXT over this connection.
 OutputStream NXTCommBluecove.getOutputStream()
           
 OutputStream NXTCommBluez.getOutputStream()
           
 OutputStream NXTCommUSB.getOutputStream()
           
 OutputStream NXTConnector.getOutputStream()
           
 

Uses of OutputStream in net.sf.antcontrib.cpptasks.compiler
 

Methods in net.sf.antcontrib.cpptasks.compiler with parameters of type OutputStream
 void CaptureStreamHandler.setProcessInputStream(OutputStream os)
          Install a handler for the input stream of the subprocess.
 

Uses of OutputStream in org.apache.bcel.classfile
 

Methods in org.apache.bcel.classfile with parameters of type OutputStream
 void JavaClass.dump(OutputStream file)
          Dump Java class to output stream in binary format.
 

Uses of OutputStream in org.apache.bcel.util
 

Constructors in org.apache.bcel.util with parameters of type OutputStream
BCELifier(JavaClass clazz, OutputStream out)