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