aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Schweinsberg <[email protected]>2007-02-05 12:39:51 +0000
committerDavid Schweinsberg <[email protected]>2007-02-05 12:39:51 +0000
commit2da7e1f91883642b92799834a1e980dda2953679 (patch)
treee58edd46b81dbcf53e4099d7dffae84edb24ed4f
parent20094221e4b71badd67d3f68f396fd9ad23af29c (diff)
Added 'CFF' table.
-rw-r--r--src/net/java/dev/typecast/ot/table/TableFactory.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/java/dev/typecast/ot/table/TableFactory.java b/src/net/java/dev/typecast/ot/table/TableFactory.java
index 9206a3e..632abcf 100644
--- a/src/net/java/dev/typecast/ot/table/TableFactory.java
+++ b/src/net/java/dev/typecast/ot/table/TableFactory.java
@@ -58,7 +58,7 @@ import net.java.dev.typecast.ot.OTFontCollection;
/**
*
- * @version $Id: TableFactory.java,v 1.6 2007-02-02 03:00:33 davidsch Exp $
+ * @version $Id: TableFactory.java,v 1.7 2007-02-05 12:39:51 davidsch Exp $
* @author <a href="mailto:[email protected]">David Schweinsberg</a>
*/
public class TableFactory {
@@ -84,6 +84,7 @@ public class TableFactory {
t = new BaseTable(de, dis);
break;
case Table.CFF:
+ t = new CffTable(de, dis);
break;
case Table.DSIG:
t = new DsigTable(de, dis);