diff options
author | Matt Windsor <mbw500@student.cs.york.ac.uk> | 2011-02-17 23:28:47 +0000 |
---|---|---|
committer | Matt Windsor <mbw500@student.cs.york.ac.uk> | 2011-02-17 23:28:47 +0000 |
commit | 8f3c9af4bb9edb599bdc6c8da24e74beee4e1bf1 (patch) | |
tree | 48c2dd82034844aa44c513369d494656efdc6fcb /src/uk/org/ury/frontend/AbstractFrontendModule.java |
Initial commit; initial work on the library viewer which can be run either as an applet or an application; database connection is set up to connect to localhost as testing has necessitated using a gSTM SSH tunnel.
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 (); +} |