View Javadoc
1 package net.mlw.fball.loader;
2
3 /***
4 * @author Matthew L. Wilson
5 * @version $Revision: 1.4 $ $Date: 2004/03/17 14:20:21 $
6 */
7 public interface Loader
8 {
9 /*** The name of the loader.
10 *
11 * @return The name of the loader.
12 */
13 String getName();
14
15 /*** Do the load.
16 *
17 * @throws Exception if an error occurs.
18 */
19 void doLoad() throws Exception;
20 }
This page was automatically generated by Maven