aboutsummaryrefslogtreecommitdiff
path: root/src/uk/org/ury/testrig/DemoMenu.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/uk/org/ury/testrig/DemoMenu.java')
-rw-r--r--src/uk/org/ury/testrig/DemoMenu.java64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/uk/org/ury/testrig/DemoMenu.java b/src/uk/org/ury/testrig/DemoMenu.java
deleted file mode 100644
index 19e68d9..0000000
--- a/src/uk/org/ury/testrig/DemoMenu.java
+++ /dev/null
@@ -1,64 +0,0 @@
-package uk.org.ury.testrig;
-
-import uk.org.ury.frontend.AbstractFrontendModule;
-import uk.org.ury.frontend.FrontendMaster;
-import uk.org.ury.frontend.FrontendModulePanel;
-import uk.org.ury.frontend.exceptions.LoadFailureException;
-
-
-/**
- * Application frontend, for testing early-stage frontend code.
- *
- * @author Matt Windsor
- *
- */
-
-public class DemoMenu extends AbstractFrontendModule
-{
- /**
- *
- */
- private static final long serialVersionUID = -5264235507636809476L;
- private FrontendMaster master;
-
-
- /**
- *
- */
-
- public void
- loadModule (String module)
- {
- try
- {
- master.loadModule (module, "testrig.DemoControlPanel");
- }
- catch (LoadFailureException e)
- {
- master.fatalError (e.getMessage ());
- }
- }
-
-
- /**
- * Run the demo menu, creating a user interface.
- */
-
- public void
- run ()
- {
-
- }
-
-
- /**
- * Run the demo menu in frontend mode.
- */
-
- @Override
- public FrontendModulePanel
- runFrontend (FrontendMaster master)
- {
- return new DemoMenuPanel (master);
- }
-}