From 8f3c9af4bb9edb599bdc6c8da24e74beee4e1bf1 Mon Sep 17 00:00:00 2001 From: Matt Windsor Date: Thu, 17 Feb 2011 23:28:47 +0000 Subject: 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. --- .../org/ury/frontend/AbstractFrontendModule.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/uk/org/ury/frontend/AbstractFrontendModule.java (limited to 'src/uk/org/ury/frontend/AbstractFrontendModule.java') 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 (); +} -- cgit v1.2.3