1 51 package org.apache.fop.fo; 52 53 import org.apache.fop.datatypes.Length; 54 import org.apache.fop.datatypes.CondLength; 55 56 public class CondLengthProperty extends Property { 57 58 public static class Maker extends Property.Maker { 59 60 public Maker(String name) { 61 super(name); 62 } 63 64 } 65 66 private CondLength condLength = null; 67 68 public CondLengthProperty(CondLength condLength) { 69 this.condLength = condLength; 70 } 71 72 public CondLength getCondLength() { 73 return this.condLength; 74 } 75 76 77 public Length getLength() { 78 return this.condLength.getLength().getLength(); 79 } 80 81 public Object getObject() { 82 return this.condLength; 83 } 84 85 } 86 | Popular Tags |