Maker Maker .put("", .maker("")); package org.apache.fop.fo.properties; import java.util.Hashtable; import java.util.Enumeration; import org.apache.fop.svg.*; public class PropertyMapping { private static Hashtable s_htGeneric = new Hashtable(200); private static Hashtable s_htElementLists = new Hashtable(10); private static Hashtable s_ht; public static Hashtable getGenericMappings() { return s_htGeneric; } public static Enumeration getElementMappings() { return s_htElementLists.keys(); } public static Hashtable getElementMapping(String elemName) { return (Hashtable)s_htElementLists.get(elemName); } } static { // Generate the generic mapping } static { s_ht = new Hashtable(); s_htElementLists.put("", s_ht); s_ht } /* PROPCLASS = */