1 31 package org.pdfbox.ttf; 32 33 import java.io.IOException ; 34 35 41 public class TTFTable 42 { 43 private String tag; 44 private long checkSum; 45 private long offset; 46 private long length; 47 48 51 public long getCheckSum() 52 { 53 return checkSum; 54 } 55 58 public void setCheckSum(long checkSumValue) 59 { 60 this.checkSum = checkSumValue; 61 } 62 65 public long getLength() 66 { 67 return length; 68 } 69 72 public void setLength(long lengthValue) 73 { 74 this.length = lengthValue; 75 } 76 79 public long getOffset() 80 { 81 return offset; 82 } 83 86 public void setOffset(long offsetValue) 87 { 88 this.offset = offsetValue; 89 } 90 93 public String getTag() 94 { 95 return tag; 96 } 97 100 public void setTag(String tagValue) 101 { 102 this.tag = tagValue; 103 } 104 105 112 public void initData( TrueTypeFont ttf, TTFDataStream data ) throws IOException 113 { 114 } 115 } 116 | Popular Tags |