1 17 18 19 package org.apache.fop.area.inline; 20 21 24 public class SpaceArea extends InlineArea { 25 26 29 protected String space; 30 31 34 protected boolean isAdjustable; 35 36 42 public SpaceArea(char s, int o, boolean a) { 43 space = new String () + s; 44 offset = o; 45 isAdjustable = a; 46 } 47 48 51 public String getSpace() { 52 return new String (space); 53 } 54 55 56 public boolean isAdjustable() { 57 return this.isAdjustable; 58 } 59 } 60 | Popular Tags |