1 17 18 19 20 package org.apache.fop.render.ps.extensions; 21 22 import org.apache.fop.util.ContentHandlerFactory; 23 import org.xml.sax.ContentHandler ; 24 25 28 public class PSExtensionHandlerFactory implements ContentHandlerFactory { 29 30 private static final String [] NAMESPACES = new String [] {PSSetupCode.CATEGORY}; 31 32 33 public String [] getSupportedNamespaces() { 34 return NAMESPACES; 35 } 36 37 38 public ContentHandler createContentHandler() { 39 return new PSExtensionHandler(); 40 } 41 42 } 43 | Popular Tags |