1 51 package org.apache.fop.fo; 52 53 import org.apache.fop.datatypes.Space; 54 import org.apache.fop.datatypes.LengthRange; 55 56 public class SpaceProperty extends Property { 57 58 public static class Maker extends LengthRangeProperty.Maker { 59 protected Maker(String name) { 60 super(name); 61 } 62 } 63 64 private Space space; 65 66 public SpaceProperty(Space space) { 67 this.space = space; 68 } 69 70 public Space getSpace() { 71 return this.space; 72 } 73 74 75 public LengthRange getLengthRange() { 76 return this.space; 77 } 78 79 public Object getObject() { 80 return this.space; 81 } 82 83 } 84 | Popular Tags |