1 17 18 19 20 package org.apache.fop.fo.properties; 21 22 import org.apache.fop.fo.FObj; 23 import org.apache.fop.fo.PropertyList; 24 25 public class ToBeImplementedProperty extends Property { 26 27 public static class Maker extends PropertyMaker { 28 29 public Maker(int propId) { 30 super(propId); 31 } 32 33 public Property convertProperty(Property p, 34 PropertyList propertyList, FObj fo) { 35 if (p instanceof ToBeImplementedProperty) { 36 return p; 37 } 38 39 ToBeImplementedProperty val = 40 new ToBeImplementedProperty(getPropId()); 41 return val; 42 } 43 } 44 45 49 public ToBeImplementedProperty(int propId) { 50 51 55 } 59 } 60 61 | Popular Tags |