1 31 package org.pdfbox.afmtypes; 32 33 39 public class TrackKern 40 { 41 private int degree; 42 private float minPointSize; 43 private float minKern; 44 private float maxPointSize; 45 private float maxKern; 46 47 50 public int getDegree() 51 { 52 return degree; 53 } 54 55 58 public void setDegree(int degreeValue) 59 { 60 degree = degreeValue; 61 } 62 63 66 public float getMaxKern() 67 { 68 return maxKern; 69 } 70 71 74 public void setMaxKern(float maxKernValue) 75 { 76 maxKern = maxKernValue; 77 } 78 79 82 public float getMaxPointSize() 83 { 84 return maxPointSize; 85 } 86 87 90 public void setMaxPointSize(float maxPointSizeValue) 91 { 92 maxPointSize = maxPointSizeValue; 93 } 94 95 98 public float getMinKern() 99 { 100 return minKern; 101 } 102 103 106 public void setMinKern(float minKernValue) 107 { 108 minKern = minKernValue; 109 } 110 111 114 public float getMinPointSize() 115 { 116 return minPointSize; 117 } 118 119 122 public void setMinPointSize(float minPointSizeValue) 123 { 124 minPointSize = minPointSizeValue; 125 } 126 127 } | Popular Tags |