public java.util.Hashtable | getBuiltInTypes()get all built-in DVs, which are stored in a hashtable keyed by the name
New XML 1.1 datatypes are inserted.
Hashtable toReturn = (Hashtable)fBuiltInTypes.clone();
Enumeration xml11Keys = fXML11BuiltInTypes.keys();
while (xml11Keys.hasMoreElements()) {
Object key = xml11Keys.nextElement();
toReturn.put(key, fXML11BuiltInTypes.get(key));
}
return toReturn;
|