01: package xui.samples.carousel.database;
02:
03: import net.xoetrope.xui.XPage;
04: import net.xoetrope.xui.XProject;
05:
06: /**
07: * An interface for prepartaion of resources
08: * $Revision: 1.1 $
09: */
10: public interface PreparationTask {
11: /**
12: * Prepare a resource
13: */
14: public void prepare(Prepared owner, XProject project);
15: }
|