/[xulu]/trunk/src/appl/data/DataLoader.java
ViewVC logotype

Contents of /trunk/src/appl/data/DataLoader.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 114 - (show annotations)
Mon Jul 11 11:31:25 2011 UTC (13 years, 5 months ago) by mojays
File size: 789 byte(s)
SCHMITZM library updated to current version (2.6-SNAPSHOT)
Added gt-xsd-filter.jar, gt-xsd-gml2.jar, picocontainer.jar and xsd.jar from Geotools 2.6.5
1 package appl.data;
2
3 import java.io.Serializable;
4
5 import de.appl.data.LoadingException;
6
7 /**
8 * A class that automatically loads a specified object and returns it, as soon
9 * as the {@link #load()} method is invoked. It is the counterpart of {@link DataUnloader}.
10 *
11 * @author Dominik Appl
12 * @see DataUnloader
13 */
14 public interface DataLoader extends Serializable {
15
16 /**
17 * On invocation the data is loaded and returned
18 *
19 * @return the newly loaded object
20 *
21 * @throws LoadingException if for some reason the data could not
22 * be loaded
23 */
24 public Object load() throws LoadingException;
25
26 /**
27 * @return some general information about the loading class
28 * (like what the class exactly loads)
29 *
30 */
31 public String getLoadInfo();
32
33 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26