1 17 18 19 20 package org.apache.fop.fo.extensions; 21 22 import java.util.HashMap ; 23 24 import org.apache.fop.fo.ElementMapping; 25 import org.apache.fop.fo.UnknownXMLObj; 26 27 30 public class OldExtensionElementMapping extends ElementMapping { 31 32 33 public static final String URI = "http://xml.apache.org/fop/extensions"; 34 35 38 public OldExtensionElementMapping() { 39 namespaceURI = URI; 40 } 41 42 45 protected void initialize() { 46 if (foObjs == null) { 47 foObjs = new HashMap (); 48 foObjs.put("outline", new UnknownXMLObj.Maker(URI)); 49 foObjs.put("label", new UnknownXMLObj.Maker(URI)); 50 } 51 } 52 } 53 | Popular Tags |