* The element attributes
*/
private void enterLibraryImages(final Attributes attributes)
{
this.imageLibrary = new ImageLibrary();
final String name = attributes.getValue("name");
final String id = attributes.getValue("id");
if (name != null) this.imageLibrary.setName(name);
if (id != null) this.imageLibrary.setId(id);
enterElement(ParserMode.LIBRARY_IMAGES);