diff options
Diffstat (limited to 'src/uk/org/ury/frontend/AbstractFrontendModule.java')
-rw-r--r-- | src/uk/org/ury/frontend/AbstractFrontendModule.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/uk/org/ury/frontend/AbstractFrontendModule.java b/src/uk/org/ury/frontend/AbstractFrontendModule.java new file mode 100644 index 0000000..99ff9cf --- /dev/null +++ b/src/uk/org/ury/frontend/AbstractFrontendModule.java @@ -0,0 +1,27 @@ +package uk.org.ury.frontend; + +import javax.swing.JApplet; + +/** + * An abstract implementation of the FrontendModule interface. + * + * @author Matt Windsor + * + */ + +public abstract class AbstractFrontendModule extends JApplet implements FrontendModule +{ + + /** + * + */ + private static final long serialVersionUID = 5309585577127763538L; + + + /** + * Initialise the module as an applet. + */ + + public abstract void + init (); +} |