public static final AttributeFactory getInstance(String identifier)
throws UnknownIdentifierException {
AttributeFactoryProxy proxy = (AttributeFactoryProxy) (registeredFactories.get(identifier));
if (proxy == null)
throw new UnknownIdentifierException("Uknown AttributeFactory " + "identifier: "
+ identifier);
return proxy.getFactory();
}