private class ImageMaker extends AbstractMaker {
public void startElement(Attributes attributes) {
String url = attributes.getValue("url");
Image image = new Image(url);
transferForeignObjects(attributes, image);
setAreaAttributes(attributes, image);
setTraits(attributes, image, SUBSET_COMMON);
getCurrentViewport().setContent(image);
}