1 17 18 19 package org.apache.fop.area.inline; 20 21 24 public class WordArea extends InlineArea { 25 26 27 protected String word; 28 29 30 protected int offset = 0; 31 32 33 protected int[] letterAdjust; 34 35 41 public WordArea(String w, int o, int[] la) { 42 word = w; 43 offset = o; 44 this.letterAdjust = la; 45 } 46 47 50 public String getWord() { 51 return word; 52 } 53 54 57 public int getOffset() { 58 return offset; 59 } 60 63 public void setOffset(int o) { 64 offset = o; 65 } 66 67 68 public int[] getLetterAdjustArray() { 69 return this.letterAdjust; 70 } 71 72 } 73 | Popular Tags |