1package org.newdawn.slick.svg; 2 3import org.newdawn.slick.geom.Transform; 4import org.w3c.dom.Element; 5 6/** 7 * Description of a simple XML loader 8 * 9 * @author kevin 10 */ 11public interface Loader { 12 /** 13 * Load the children of a given element 14 * 15 * @param element The element whose children should be loaded 16 * @param t The transform to apply to all the children 17 * @throws ParsingException Indicates a failure to read the XML 18 */ 19 public void loadChildren(Element element, Transform t) throws ParsingException; 20} 21 22