Uses of Interface
org.egothor.io.DataOutput

Packages that use DataOutput
org.egothor.apps This package contains EGOTHOR applications. 
org.egothor.core This package concentrates the core data objects and interfaces. 
org.egothor.dockyard   
org.egothor.io   
org.egothor.stemmer This package does not contain a solid JAVA documentation. 
org.egothor.store This package contains an implementation of barrels on a hard disk. 
org.egothor.text This package contains support of some textual routines/processes. 
org.egothor.util   
org.egothor.util.diff   
org.egothor.util.io   
 

Uses of DataOutput in org.egothor.apps
 

Methods in org.egothor.apps with parameters of type DataOutput
 void Dumper.appendBinary(BarrelReader b, DataOutput out)
           
 

Uses of DataOutput in org.egothor.core
 

Methods in org.egothor.core with parameters of type DataOutput
 void DocumentData.store(DataOutput dos)
          Write this object to the given output stream.
 void Saveable.store(DataOutput o)
          Stores the object to the given output stream.
 

Uses of DataOutput in org.egothor.dockyard
 

Constructors in org.egothor.dockyard with parameters of type DataOutput
StreamWriter(DataOutput out)
          Writer to a file.
 

Uses of DataOutput in org.egothor.io
 

Classes in org.egothor.io that implement DataOutput
 class DataInputOutputStream
           
 class DataOutputStream
          This class is part of the Egothor Project
 class MemoryOutputStream
          This class is part of the Egothor Project
 

Methods in org.egothor.io with parameters of type DataOutput
static void DataOutputStream.copyFrom(DataInput in, DataOutput out, int length)
           
 void MemoryOutputStream.writeTo(DataOutput dos)
          Description of the Method
 

Uses of DataOutput in org.egothor.stemmer
 

Methods in org.egothor.stemmer with parameters of type DataOutput
 void MultiTrie.store(DataOutput os)
          Write this data structure to the given output stream.
 void MultiTrie2.store(DataOutput os)
          Write this data structure to the given output stream.
 void Row.store(DataOutput os)
          Write the contents of this Row to the given output stream.
 void Trie.store(DataOutput os)
          Write this Trie to the given output stream.
 

Uses of DataOutput in org.egothor.store
 

Methods in org.egothor.store with parameters of type DataOutput
 IListWriter IListMetadataWrite.getNew(DataOutput ils_dta, ProximitiesFileOut prox)
           
 void IListMetadataWrite.store(DataOutput out)
          Description of the Method
 

Uses of DataOutput in org.egothor.text
 

Methods in org.egothor.text with parameters of type DataOutput
 void Anchor.store(DataOutput out)
          Stores the anchor text, not the URI link.
 

Uses of DataOutput in org.egothor.util
 

Methods in org.egothor.util that return DataOutput
 DataOutput Reporter.os()
           
 

Methods in org.egothor.util with parameters of type DataOutput
 void Bitmap.store(DataOutput os)
          Write this object to the given output stream.
 void IntegerArray.store(DataOutput out)
           
 void CyclicBuffer.writeTo(DataOutput different)
           
 

Uses of DataOutput in org.egothor.util.diff
 

Methods in org.egothor.util.diff with parameters of type DataOutput
protected static void GDiffReader.append(int len, DataInput patch, DataOutput output)
           
protected static void GDiffReader.copy(long off, int len, DataInput source, DataOutput output)
           
static boolean GDiffReader.patch(DataInput source, DataInput patch, DataOutput output)
           
 

Constructors in org.egothor.util.diff with parameters of type DataOutput
GDiffWriter(DataOutput output)
           
 

Uses of DataOutput in org.egothor.util.io
 

Classes in org.egothor.util.io that implement DataOutput
 class GZipOutputStream
          GZipOutputStream.java Created on 6.
 

Constructors in org.egothor.util.io with parameters of type DataOutput
GZipOutputStream(DataOutput out)
           
JavaOutputStream(DataOutput out, boolean disableUnderlayingClose)