Files
Terrarum/lib/slick-source/org/newdawn/slick/svg/Loader.java
Song Minjae 059abff814 added sources for Slick
Former-commit-id: 1647fa32ef6894bd7db44f741f07c2f4dcdf9054
Former-commit-id: 0e5810dcfbe1fd59b13e7cabe9f1e93c5542da2d
2016-12-30 23:29:12 +09:00

21 lines
517 B
Java

package org.newdawn.slick.svg;
import org.newdawn.slick.geom.Transform;
import org.w3c.dom.Element;
/**
* Description of a simple XML loader
*
* @author kevin
*/
public interface Loader {
/**
* Load the children of a given element
*
* @param element The element whose children should be loaded
* @param t The transform to apply to all the children
* @throws ParsingException Indicates a failure to read the XML
*/
public void loadChildren(Element element, Transform t) throws ParsingException;
}