WriteableChunkpublic interface WriteableChunk Implementors can write themselves directly to an output stream, and have the
ability to tell the size they would need, as well as determine if they are
empty.
|
Methods Summary |
---|
public long | getCurrentAsfChunkSize()This method calculates the total amount of bytes, the chunk would consume
in an ASF file.
| public org.jaudiotagger.audio.asf.data.GUID | getGuid()Returns the GUID of the chunk.
| public boolean | isEmpty()true if it is not necessary to write the chunk into an ASF
file, since it contains no information.
| public long | writeInto(java.io.OutputStream out)Writes the chunk into the specified output stream, as ASF stream chunk.
|
|