Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epoxy
GitHub Repository: epoxy/proj11
Path: blob/master/SLICK_HOME/src/org/newdawn/slick/svg/Loader.java
1463 views
1
package org.newdawn.slick.svg;
2
3
import org.newdawn.slick.geom.Transform;
4
import org.w3c.dom.Element;
5
6
/**
7
* Description of a simple XML loader
8
*
9
* @author kevin
10
*/
11
public 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