java.lang.Object
org.apache.batik.svggen.font.table.CmapFormat
- Direct Known Subclasses:
- CmapFormat0, CmapFormat2, CmapFormat4, CmapFormat6
- public abstract class CmapFormat
- extends java.lang.Object
- Version:
- $Id: CmapFormat.java,v 1.4 2004/09/01 09:35:23 deweese Exp $
format
protected int format
length
protected int length
version
protected int version
CmapFormat
protected CmapFormat(java.io.RandomAccessFile raf)
throws java.io.IOException
create
protected static CmapFormat create(int format,
java.io.RandomAccessFile raf)
throws java.io.IOException
getFormat
public int getFormat()
getLength
public int getLength()
getVersion
public int getVersion()
mapCharCode
public abstract int mapCharCode(int charCode)
getFirst
public abstract int getFirst()
getLast
public abstract int getLast()
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).