Uses of Interface
cz.cuni.jagrlib.iface.BitStream

Packages that use BitStream
cz.cuni.jagrlib Core JaGrLib package. 
cz.cuni.jagrlib.iface Various interfaces for connecting of JaGrLib modules. 
cz.cuni.jagrlib.piece Public modules (building blocks of JaGrLib compositions). 
cz.cuni.jagrlib.testing Temporary JaGrLib modules. 
 

Uses of BitStream in cz.cuni.jagrlib
 

Methods in cz.cuni.jagrlib with parameters of type BitStream
protected  void DefaultBrepFileFormat.commonLoad(BitStream stream, Brep b)
          Common load code.
protected  void DefaultRasterFileFormat.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void DefaultBrepFileFormat.commonSave(BitStream stream, Brep b)
          Common save code.
protected  void DefaultRasterFileFormat.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
 boolean DefaultBrepFileFormat.loadFile(BitStream stream, java.lang.Object support)
          Retrieves data from the given BitStream.
abstract  boolean DefaultFileFormat.loadFile(BitStream stream, java.lang.Object support)
          Retrieves data from the given BitStream.
 boolean DefaultRasterFileFormat.loadFile(BitStream stream, java.lang.Object support)
          Retrieves data from the given BitStream.
static int DefaultFileFormat.readUnsigned16(BitStream s, boolean littleEndian)
          Reads 16-bit unsigned integer from the given bit-stream.
static long DefaultFileFormat.readUnsigned32(BitStream s, boolean littleEndian)
          Reads 32-bit unsigned integer from the given bit-stream.
 boolean DefaultBrepFileFormat.saveFile(BitStream stream, java.lang.Object support)
          Saves data to the given BitStream.
abstract  boolean DefaultFileFormat.saveFile(BitStream stream, java.lang.Object support)
          Saves data to the given BitStream.
 boolean DefaultRasterFileFormat.saveFile(BitStream stream, java.lang.Object support)
          Saves data to the given BitStream.
static void DefaultFileFormat.writeUnsigned16(BitStream s, int data, boolean littleEndian)
          Writes 16-bit unsigned integer to the given bit-stream.
static void DefaultFileFormat.writeUnsigned32(BitStream s, long data, boolean littleEndian)
          Writes 32-bit unsigned integer to the given bit-stream.
 

Uses of BitStream in cz.cuni.jagrlib.iface
 

Methods in cz.cuni.jagrlib.iface with parameters of type BitStream
 boolean DataFileFormat.loadFile(BitStream stream, java.lang.Object support)
          Retrieves data from the given BitStream.
 boolean DataFileFormat.saveFile(BitStream stream, java.lang.Object support)
          Saves data to the given BitStream.
 

Uses of BitStream in cz.cuni.jagrlib.piece
 

Classes in cz.cuni.jagrlib.piece that implement BitStream
 class BufferedBitStream
          Bit-stream object with random access and buffer-capability build on top of RandomAccessFile class.
 class JavaBitStream
          Bit-stream object implemented with help of java.io streams (InputStream, OutputStream).
 

Fields in cz.cuni.jagrlib.piece declared as BitStream
protected  BitStream ArithmeticCodec.stream
          Associated I/O stream.
protected  BitStream HuffmanCodec.stream
          Associated I/O stream.
protected  BitStream LZWCodec.stream
          Associated I/O stream.
protected  BitStream WAVFileFormatMapped.stream
          Opened bit-stream or null.
protected  BitStream ZLIBCodec.stream
          Associated I/O stream.
 

Methods in cz.cuni.jagrlib.piece with parameters of type BitStream
protected  void OBJFileFormat.commonLoad(BitStream stream, Brep b)
          Common load code.
protected  void CompressedFormatGray.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void CompressedFormatTransform.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void FractalCompressionQtree.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void GIFFileFormat.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void HDRFileFormat.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void MeshCompressionRLE.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void PFMFileFormat.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void OBJFileFormat.commonSave(BitStream stream, Brep b)
          Common save code.
protected  void CompressedFormatGray.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void CompressedFormatTransform.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void FractalCompressionQtree.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void GIFFileFormat.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void HDRFileFormat.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void JFIFFileFormat.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void MeshCompressionRLE.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void PFMFileFormat.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void PNGFileFormat.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
 int HuffmanCodec.HuffTree.getChar(BitStream stream)
           
 boolean WAVFileFormatMapped.loadFile(BitStream stream, java.lang.Object support)
          Retrieves data from the given BitStream.
 boolean WAVFileFormatMapped.saveFile(BitStream stream, java.lang.Object support)
          Saves data to the given BitStream.
 void HuffmanCodec.HuffTree.writeChar(BitStream stream, int character)
           
 

Uses of BitStream in cz.cuni.jagrlib.testing
 

Methods in cz.cuni.jagrlib.testing with parameters of type BitStream
protected  void CompressedFormatBW.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void CompressedFormatOrder.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void CompressedFormatPal.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void CompressedFormatRGB.commonLoad(BitStream stream, RasterGraphics g)
          Common load code.
protected  void CompressedFormatBW.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void CompressedFormatOrder.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void CompressedFormatPal.commonSave(BitStream stream, RasterGraphics g)
          Common save code.
protected  void CompressedFormatRGB.commonSave(BitStream stream, RasterGraphics g)
          Common save code.