|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ApplicationInterface | |
| amber.server.application | Amber Server Application. |
| amber.server.component | The handlers at the server for the remote components. |
| amber.server.panel | Amber Server Panel Classes. |
| Uses of ApplicationInterface in amber.server.application |
| Classes in amber.server.application that implement ApplicationInterface | |
class |
ApplicationHandler
This class handles the requirements for the manipulation of the pages. |
class |
LicenseViolatedApplicationHandler
|
| Methods in amber.server.application that return ApplicationInterface | |
ApplicationInterface |
SendThread.getParent()
This function returns the parent application to which messages will be sent. |
ApplicationInterface |
HandlePacketThread.getParent()
This function returns the parent application to which messages will be sent. |
ApplicationInterface |
ApplicationInterface.getModalObject()
Returns the current object which is receiving all input packets. |
ApplicationInterface |
ApplicationHandler.getModalObject()
Returns the current object which is receiving all input packets. |
ApplicationInterface |
EventThread.getParent()
This function returns the parent application to which messages will be sent. |
ApplicationInterface |
ReceiveThread.getParent()
This function returns the parent application to which messages will be sent. |
| Methods in amber.server.application with parameters of type ApplicationInterface | |
void |
SendThread.setParent(ApplicationInterface parent)
This function sets the parent application to which messages will be sent. |
void |
HandlePacketThread.setParent(ApplicationInterface parent)
This function sets the parent application to which messages will be sent. |
void |
ApplicationInterface.setModalObject(ApplicationInterface object)
Sets the current object which is to receive all input packets. |
void |
ApplicationHandler.setModalObject(ApplicationInterface object)
Sets the current object which is to receive all input packets. |
void |
EventThread.setParent(ApplicationInterface parent)
This function sets the parent application to which messages will be sent. |
void |
ReceiveThread.setParent(ApplicationInterface parent)
This function sets the parent application to which messages will be sent. |
| Constructors in amber.server.application with parameters of type ApplicationInterface | |
SendThread(java.lang.ThreadGroup group,
java.net.Socket socket,
ApplicationInterface parent)
Construct the thread, with it's parent class so it may pass back messages. |
|
HandlePacketThread(java.lang.ThreadGroup group,
ApplicationInterface parent)
Construct the thread, with it's parent class so it may pass back messages. |
|
EventThread(java.lang.ThreadGroup group,
ApplicationInterface parent)
Construct the thread, with it's parent class so it may pass back messages. |
|
ReceiveThread(java.lang.ThreadGroup group,
java.net.Socket socket,
ApplicationInterface parent,
EventThread eventHandler)
Construct the thread, with it's parent class so it may pass back messages. |
|
| Uses of ApplicationInterface in amber.server.component |
| Classes in amber.server.component that implement ApplicationInterface | |
class |
AudioHandler
This class handles the requirements for the manipulation of the packets moving to and from an Audio player component. |
class |
ButtonHandler
This class handles the requirements for the manipulation of the packets moving to and from a button component. |
class |
CheckboxHandler
This class handles the requirements for the manipulation of the packets moving to and from a checkbox component. |
class |
CheckboxMenuItemHandler
This class corresponds to a standard java.awt.CheckboxMenuItem component. |
class |
CheckboxPanelHandler
This class handles the requirements for the manipulation of the packets moving to and from a checkbox panel component. |
class |
ChoiceHandler
This class handles the requirements for the manipulation of the packets moving to and from a choice component. |
class |
ComplexListHandler
This class handles the requirements for the manipulation of the packets moving to and from a complex list component. |
class |
ComponentHandler
This class handles the requirements for the manipulation of the packets moving to and from the actual components themselves. |
class |
FloatButtonHandler
This class handles the requirements for the manipulation of the packets moving to and from a button component. |
class |
FrameHandler
This class handles the requirements for the manipulation of the packets moving to and from a frame component. |
class |
GenericEventHandler
This class allows the generic event messages to be handled. |
class |
GenericHandler
This class is a simple extension to the ComponentHandler. |
class |
ImageHandler
This class handles the requirements for the manipulation of the packets moving to and from an Image component. |
class |
LabelHandler
This class handles the requirements for the manipulation of the packets moving to and from a label component. |
class |
LinkHandler
This class handles the requirements for the manipulation of the packets moving to and from an link component. |
class |
ListHandler
This class handles the requirements for the manipulation of the packets moving to and from a list component. |
class |
MenuBarHandler
This class corresponds to a standard java.awt.MenuBar component. |
class |
MenuComponentHandler
This class corresponds to a standard java.awt.MenuComponent component. |
class |
MenuHandler
This class corresponds to a standard java.awt.Menu component. |
class |
MenuItemHandler
This class corresponds to a standard java.awt.MenuItem component. |
class |
PanelHandler
This class handles the requirements for the manipulation of the packets moving to and from a panel component. |
class |
PopupMenuHandler
This class corresponds to a standard java.awt.Menu component. |
class |
TextAreaHandler
This class handles the requirements for the manipulation of the packets moving to and from a TextArea component. |
class |
TextComponentHandler
This class handles the requirements for the manipulation of the packets moving to and from a Text Component. |
class |
TextFieldHandler
This class handles the requirements for the manipulation of the packets moving to and from an edit component. |
class |
TreeListHandler
This class handles the requirements for the manipulation of the packets moving to and from a tree list component. |
| Fields in amber.server.component declared as ApplicationInterface | |
protected ApplicationInterface |
ComponentHandler.parentPage
The Page Handler which will send the packets for this handler. |
| Methods in amber.server.component that return ApplicationInterface | |
ApplicationInterface |
ComponentHandler.getParentApplication()
This function gets the current page handler. |
ApplicationInterface |
ComponentHandler.getModalObject()
Returns the current object which is receiving all input packets. |
| Methods in amber.server.component with parameters of type ApplicationInterface | |
void |
ComponentHandler.setParentApplication(ApplicationInterface page)
This function sets the current page handler. |
void |
ComponentHandler.setModalObject(ApplicationInterface object)
Sets the current object which is to receive all input packets. |
void |
MenuHandler.add(int id,
ApplicationInterface parentPage,
java.lang.String label)
Adds an item with the specified label to this menu. |
void |
MenuHandler.insert(int id,
ApplicationInterface parentPage,
java.lang.String label,
int index)
Inserts a menu item with the specified label into this menu at the specified position. |
| Constructors in amber.server.component with parameters of type ApplicationInterface | |
ComponentHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
ComponentHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
CheckboxHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
CheckboxHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
ButtonHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
ButtonHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuComponentHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuComponentHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuItemHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuItemHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuItemHandler(ApplicationInterface pageHandler,
java.lang.String label)
The initialising constructor. |
|
MenuItemHandler(ApplicationInterface pageHandler,
java.lang.String label,
java.awt.MenuShortcut shortcut)
The initialising constructor. |
|
MenuItemHandler(int id,
ApplicationInterface pageHandler,
java.lang.String label)
The initialising constructor. |
|
MenuItemHandler(int id,
ApplicationInterface pageHandler,
java.lang.String label,
java.awt.MenuShortcut shortcut)
The initialising constructor. |
|
MenuHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuHandler(ApplicationInterface pageHandler,
java.lang.String label)
The initialising constructor. |
|
MenuHandler(ApplicationInterface pageHandler,
java.lang.String label,
boolean tearOff)
The initialising constructor. |
|
MenuHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuHandler(int id,
ApplicationInterface pageHandler,
java.lang.String label)
The initialising constructor. |
|
MenuHandler(int id,
ApplicationInterface pageHandler,
java.lang.String label,
boolean tearOff)
The initialising constructor. |
|
ImageHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
ImageHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuBarHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
MenuBarHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
TextComponentHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
TextComponentHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
PanelHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
PanelHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
PopupMenuHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
PopupMenuHandler(ApplicationInterface pageHandler,
java.lang.String label)
The initialising constructor. |
|
PopupMenuHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
PopupMenuHandler(int id,
ApplicationInterface pageHandler,
java.lang.String label)
The initialising constructor. |
|
FrameHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
FrameHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
TextFieldHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
TextFieldHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
ListHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
ListHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
GenericEventHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
GenericEventHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
TreeListHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
TreeListHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
ComplexListHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
ComplexListHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
TextAreaHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
TextAreaHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
ChoiceHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
ChoiceHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
GenericHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
GenericHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
LabelHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
LabelHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
AudioHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
AudioHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
LinkHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
LinkHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
CheckboxMenuItemHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
CheckboxMenuItemHandler(ApplicationInterface pageHandler,
java.lang.String label)
The initialising constructor. |
|
CheckboxMenuItemHandler(ApplicationInterface pageHandler,
java.lang.String label,
boolean state)
The initialising constructor. |
|
CheckboxMenuItemHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
CheckboxMenuItemHandler(int id,
ApplicationInterface pageHandler,
java.lang.String label)
The initialising constructor. |
|
CheckboxMenuItemHandler(int id,
ApplicationInterface pageHandler,
java.lang.String label,
boolean state)
The initialising constructor. |
|
CheckboxPanelHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
CheckboxPanelHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
FloatButtonHandler(ApplicationInterface pageHandler)
The initialising constructor. |
|
FloatButtonHandler(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
| Uses of ApplicationInterface in amber.server.panel |
| Classes in amber.server.panel that implement ApplicationInterface | |
class |
BaseFrame
This class is an extension to the BasePanel class and handles the extra requirements inherent in the fact that this class handles a window rather than a panel which lives inside some type of container such as an HTML page. |
class |
BasePanel
This class handles the requirements for the specific manipulation of panels within specific pages. |
class |
FileDialog
This class allows a user to browse the file system. |
class |
GenericPanel
This class is a simple extension to the BasePanel class and allows the user to perform general panel operations without the requirement to subclass BasePanel. |
class |
ModalBaseFrame
This class extends BaseFrame, and makes a frame Modal. |
class |
TextInputDialog
This class allows a user to enter a single line of text. |
| Constructors in amber.server.panel with parameters of type ApplicationInterface | |
BasePanel(ApplicationInterface pageHandler)
The initialising constructor. |
|
BasePanel(ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState)
The initialising constructor. |
|
BasePanel(ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState,
int x,
int y)
The initialising constructor. |
|
BasePanel(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
BasePanel(int id,
int baseOffset,
ApplicationInterface pageHandler)
The initialising constructor. |
|
BasePanel(int id,
int baseOffset,
ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState)
The initialising constructor. |
|
BasePanel(int id,
int baseOffset,
ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState,
int x,
int y)
The initialising constructor. |
|
BaseFrame(ApplicationInterface pageHandler)
The initialising constructor. |
|
BaseFrame(ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState)
The initialising constructor. |
|
BaseFrame(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
BaseFrame(int id,
int baseOffset,
ApplicationInterface pageHandler)
The initialising constructor. |
|
BaseFrame(int id,
int baseOffset,
ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState)
The initialising constructor. |
|
ModalBaseFrame(ApplicationInterface pageHandler)
The initialising constructor. |
|
ModalBaseFrame(ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState)
The initialising constructor. |
|
ModalBaseFrame(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
ModalBaseFrame(int id,
int baseOffset,
ApplicationInterface pageHandler)
The initialising constructor. |
|
ModalBaseFrame(int id,
int baseOffset,
ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState)
The initialising constructor. |
|
FileDialog(ApplicationInterface appHandler)
The initialising constructor. |
|
FileDialog(ApplicationInterface appHandler,
java.lang.String title)
The initialising constructor. |
|
FileDialog(ApplicationInterface appHandler,
java.lang.String title,
int role)
The initialising constructor. |
|
FileDialog(int id,
ApplicationInterface appHandler,
java.lang.String title,
int role)
The initialising constructor. |
|
TextInputDialog(ApplicationInterface appHandler)
The initialising constructor. |
|
TextInputDialog(ApplicationInterface appHandler,
java.lang.String title)
The initialising constructor. |
|
TextInputDialog(ApplicationInterface appHandler,
java.lang.String title,
java.lang.String caption)
The initialising constructor. |
|
TextInputDialog(int id,
ApplicationInterface appHandler,
java.lang.String title,
java.lang.String caption)
The initialising constructor. |
|
GenericPanel(ApplicationInterface pageHandler)
The initialising constructor. |
|
GenericPanel(int id,
ApplicationInterface pageHandler)
The initialising constructor. |
|
GenericPanel(ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState)
The initialising constructor. |
|
GenericPanel(ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState,
int x,
int y)
The initialising constructor. |
|
GenericPanel(int id,
int baseOffset,
ApplicationInterface pageHandler)
The initialising constructor. |
|
GenericPanel(int id,
int baseOffset,
ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState)
The initialising constructor. |
|
GenericPanel(int id,
int baseOffset,
ApplicationInterface pageHandler,
PanelTemplateGroup panelGroup,
boolean selectedState,
int x,
int y)
The initialising constructor. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||