From cee53b021632c95f1b4882664a31ca639a9b0700 Mon Sep 17 00:00:00 2001 From: Matt Windsor Date: Sun, 20 Mar 2011 16:38:51 +0000 Subject: Rewrite of server to use HttpCore example code; beginning of code reformat from GNU style to Java conventions. Code now includes Apache license code. --- doc/uk/org/ury/frontend/FrontendMaster.html | 65 +++++++++++++++++++++++++---- 1 file changed, 58 insertions(+), 7 deletions(-) (limited to 'doc/uk/org/ury/frontend/FrontendMaster.html') diff --git a/doc/uk/org/ury/frontend/FrontendMaster.html b/doc/uk/org/ury/frontend/FrontendMaster.html index 485ebb1..08e34a5 100644 --- a/doc/uk/org/ury/frontend/FrontendMaster.html +++ b/doc/uk/org/ury/frontend/FrontendMaster.html @@ -2,12 +2,12 @@ - + FrontendMaster - + @@ -92,7 +92,7 @@ uk.org.ury.frontend
Interface FrontendMaster
-
All Known Implementing Classes:
FrontendAppletPanel, FrontendFrame
+
All Known Implementing Classes:
FrontendApplet, FrontendFrame

@@ -134,6 +134,14 @@ Interface for classes providing the parent unit of a frontend + java.lang.String +getResourceDirectory() + +
+            + + +  void loadModule(java.lang.String moduleName) @@ -160,6 +168,14 @@ Interface for classes providing the parent unit of a frontend           Restore an existing module and control panel into the frontend master. + + + void +setupUI() + +
+          Set up the frontend master's user interface. +  

@@ -177,7 +193,8 @@ Interface for classes providing the parent unit of a frontend

loadModule

-void loadModule(java.lang.String moduleName)
+void loadModule(java.lang.String moduleName) + throws LoadFailureException
Load a module into the frontend frame. @@ -186,7 +203,11 @@ void loadModule(java.lang.String moduleName)

Parameters:
moduleName - The fully qualified class-name of the module, - minus the leading "uk.org.ury." domain.
+ minus the leading "uk.org.ury." domain. +
Throws: +
LoadFailureException - if the class is + not found, or is not an implementor of + FrontendModule.

@@ -195,7 +216,8 @@ void loadModule(java.lang.String moduleName) loadModule
 void loadModule(java.lang.String moduleName,
-                java.lang.String cPanelName)
+ java.lang.String cPanelName) + throws LoadFailureException
Load a module into the frontend frame, additionally installing a control panel to communicate with the previous module. @@ -207,7 +229,11 @@ void loadModule(java.lang.String moduleName,
Parameters:
moduleName - The fully qualified class-name of the module, minus the leading "uk.org.ury." domain.
cPanelName - The fully qualified class-name of the control panel to install, minus the leading - "uk.org.ury." domain.
+ "uk.org.ury." domain. +
Throws: +
LoadFailureException - if the class is + not found, or is not an implementor of + FrontendModule.

@@ -241,6 +267,31 @@ void fatalError(java.lang.String message) to the user. +
+ +

+setupUI

+
+void setupUI()
+
+
Set up the frontend master's user interface. +

+

+
+
+
+
+ +

+getResourceDirectory

+
+java.lang.String getResourceDirectory()
+
+
+ +
Returns:
the resource directory.
+
+

-- cgit v1.2.3