private ElementStart makeElementStart(String type, Attributes attributes) {
ElementStart e = ElementStartJsoImpl.create();
e.setType(type);
for (String name : attributes.keySet()) {
e.addAttribute(keyValuePair(name, attributes.get(name)));
}
return e;
}
@Override