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/FrontendPanel.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/FrontendPanel.java')
-rw-r--r-- | src/uk/org/ury/frontend/FrontendPanel.java | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/uk/org/ury/frontend/FrontendPanel.java b/src/uk/org/ury/frontend/FrontendPanel.java new file mode 100644 index 0000000..e2e8c44 --- /dev/null +++ b/src/uk/org/ury/frontend/FrontendPanel.java @@ -0,0 +1,34 @@ +/** + * + */ +package uk.org.ury.frontend; + +import javax.swing.JPanel; + +/** + * A frontend user interface panel. + * + * All frontend user interfaces should subclass this as their main + * interface space, so that frontend panels can include each other + * and panels can be embedded into application frames or applets. + * + * @author Matt Windsor + * + */ +public abstract class FrontendPanel extends JPanel +{ + /** + * + */ + + private static final long serialVersionUID = 5616222530691425635L; + + public + FrontendPanel () + { + super (); + } + + public abstract String + getName (); +} |