@Override
public void startElement(String uri, String localName, String qName,
Attributes attributes) {
if ("FileFormat".equals(qName)) {
Format format = new Format();
format.setPuid(notNull(attributes.getValue("PUID")));
format.setName(notNull(attributes.getValue("Name")));
format.setMimeType(notNull(attributes.getValue("MIMEType")));
format.setVersion(notNull(attributes.getValue("Version")));
callback.onFormat(format);
}
}