Package | Description |
---|---|
casxml |
Provides classes to handle CAS (Character Animation Stream) XML data input.
|
Modifier and Type | Method and Description |
---|---|
static void |
CASWriter.writeDocument(java.io.Writer wrtr,
java.lang.String av,
AnimatedSign[] signs)
Writes the given animation, for the given avatar, in CAS 2.1 format
to the given writer, specifying the standard encoding (UTF-8).
|
static void |
CASWriter.writeDocument(java.io.Writer wrtr,
java.lang.String enc,
java.lang.String av,
AnimatedSign[] signs)
Writes the given animation, for the given avatar, in CAS 2.1 format
to the given writer, specifying the given encoding.
|
Constructor and Description |
---|
CASWriter(java.io.Writer wrtr,
java.lang.String av,
AnimatedSign[] signs)
Constructs a new CAS writer, for the given avatar and animated
sign sequence, to the given writer, using the standard XML encoding,
indentation unit and CAS version number (2.1).
|
CASWriter(java.io.Writer wrtr,
java.lang.String enc,
java.lang.String av,
AnimatedSign[] signs)
Constructs a new CAS writer specifying the given XML encoding, for
the given avatar and animated sign sequence, to the given writer,
using the standard XML indentation unit and CAS version number (2.1).
|
CASWriter(java.io.Writer wrtr,
java.lang.String enc,
java.lang.String inunit,
java.lang.String vn,
java.lang.String av,
AnimatedSign[] signs)
Constructs a new CAS writer specifying the given XML encoding, for
the given avatar and animated sign sequence, to the given writer,
using the given indentation unit and CAS version number.
|