Serialized Form
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Writes this object out, writing only the portion of the array being
represented and writing the offset into it as 0.
- Throws:
java.io.IOException
- if an I/O exception occurs
bytes
byte[] bytes
- The array backing this
ByteBlock
.
offset
int offset
- The index in the backing array that represents the first index of this
block.
len
int len
- The number of bytes represented by this block.
hashCode
int hashCode
- A hash code generated from this byte block, or
0
if no code
has yet been generated. (This value is generated lazily.)
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reconstitute the list from a stream (i.e., deserialize it).
writeObject
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
- Save the state of the list to a stream (i.e., serialize it).
- Serial Data:
- The length of the array backing the list is emitted
(int), followed by all of its elements (each an Object)
in the proper order.
- Throws:
java.io.IOException
al
CopyOnWriteArrayList al
Package net.kano.joscar.snaccmd.ssi |
Class SsiItem extends java.lang.Object implements Serializable |
name
java.lang.String name
- The item name.
parentid
int parentid
- The parent ID of the item.
id
int id
- The subID"" of the item.
type
int type
- The item type.
data
ByteBlock data
- The item data block.
Package net.kano.joscar.flap |