1 51 package org.apache.fop.layout; 52 53 import org.apache.fop.apps.FOPException; 54 55 59 public class TextState { 60 61 protected boolean underlined; 62 protected boolean overlined; 63 protected boolean linethrough; 64 65 public TextState() throws FOPException {} 66 67 70 public boolean getUnderlined() { 71 return underlined; 72 } 73 74 77 public void setUnderlined(boolean ul) { 78 this.underlined = ul; 79 } 80 81 84 public boolean getOverlined() { 85 return overlined; 86 } 87 88 public void setOverlined(boolean ol) { 89 this.overlined = ol; 90 } 91 92 public boolean getLineThrough() { 93 return linethrough; 94 } 95 96 public void setLineThrough(boolean lt) { 97 this.linethrough = lt; 98 } 99 100 } 101 | Popular Tags |