private final static class DomModule extends SimpleModule
{
public DomModule()
{
super("DomModule", Version.unknownVersion());
addDeserializer(Element.class, new DomElementJsonDeserializer());
/* 19-Feb-2011, tatu: Note: since SimpleModule does not support "generic"
* serializers, need to add bit more code here.
*/
//testModule.addSerializer(new DomElementJsonSerializer());
}