org.apache.batik.transcoder.wmf.tosvg
public class MetaRecord extends Object
Nested Class Summary | |
---|---|
static class | MetaRecord.ByteRecord A record that contain byte arrays elements. |
static class | MetaRecord.StringRecord |
Field Summary | |
---|---|
int | functionId |
int | numPoints |
Constructor Summary | |
---|---|
MetaRecord() |
Method Summary | |
---|---|
void | AddElement(Object obj)
when you are storing Integer-objects, consider using addElement( int ) instead. |
void | addElement(int iValue)
helper method to add int-values. |
int | elementAt(int offset)
helper-method to return the plain int-value from the record
and save the .intValue()-call at the caller's site. |
Integer | ElementAt(int offset)
if you dont really need the Integer-object from this method
it is recommended to use the elementAt() -method instead,
which returns an int . |
void | EnsureCapacity(int cc) |
Parameters: obj
Parameters: iValue the value to add to ptVector, wrapped in an Integer
Parameters: offset of the element to get
Returns: the intValue of the element at offset
elementAt()
-method instead,
which returns an int
.