|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ComponentHandler | |
| amber.awt.event | Amber specific Events. |
| 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. |
| amber.type.server | Amber Server Types. |
| Uses of ComponentHandler in amber.awt.event |
| Methods in amber.awt.event that return ComponentHandler | |
ComponentHandler |
ComponentWindowEvent.getWindow()
Returns the window where this event originated. |
| Constructors in amber.awt.event with parameters of type ComponentHandler | |
ComponentWindowEvent(ComponentHandler source,
int id)
Constructor for the window event. |
|
| Uses of ComponentHandler in amber.server.application |
| Methods in amber.server.application with parameters of type ComponentHandler | |
void |
ApplicationHandler.add(ComponentHandler newComponent,
java.lang.Object constraints)
This function adds a specified component to this application. |
void |
ApplicationHandler.remove(ComponentHandler component)
This function removes the specified component to this application. |
void |
ApplicationHandler.addComponent(ComponentHandler newComponent)
Deprecated. This function is now replaced by add for consistency with standard Java. |
PanelComponentInfo |
ApplicationHandler.addComponent(ComponentHandler newComponent,
int eventMask,
int x,
int y,
int width,
int height)
Deprecated. This function is now replaced by add for consistency with standard Java. |
void |
ApplicationHandler.setUpComponent(ComponentHandler newComponent)
Deprecated. This function is now replaced by add for consistency with standard Java. |
PanelComponentInfo |
ApplicationHandler.setUpComponent(ComponentHandler newComponent,
int eventMask,
int x,
int y,
int width,
int height)
Deprecated. This function is now replaced by add for consistency with standard Java. |
protected boolean |
ApplicationHandler.isAlreadyCreated(ComponentHandler component,
java.util.Vector groups)
This function checks to see if the component has already been created. |
| Uses of ComponentHandler in amber.server.component |
| Subclasses of ComponentHandler in amber.server.component | |
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 |
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. |
| Methods in amber.server.component with parameters of type ComponentHandler | |
void |
PanelHandler.removeComponent(ComponentHandler component)
This function removes a specified component from the corresponding remote Panel. |
void |
PanelHandler.setSize(ComponentHandler component,
java.awt.Dimension dimension)
This function alters the size of the specified component in the panel. |
void |
PanelHandler.setSize(ComponentHandler component,
int width,
int height)
This function alters the size of the specified component in the panel. |
void |
PanelHandler.setLocation(ComponentHandler component,
java.awt.Point point)
This function moves the specified component in the panel. |
void |
PanelHandler.setLocation(ComponentHandler component,
int x,
int y)
This function moves the specified component in the panel. |
void |
PanelHandler.setBounds(ComponentHandler component,
java.awt.Rectangle rect)
This function moves the specified component in the panel. |
void |
PanelHandler.setBounds(ComponentHandler component,
int x,
int y,
int width,
int height)
This function moves the specified component in the panel. |
| Uses of ComponentHandler in amber.server.panel |
| Subclasses of ComponentHandler in amber.server.panel | |
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. |
| Methods in amber.server.panel that return ComponentHandler | |
ComponentHandler |
BasePanel.matchIdToControl(int id)
This function is used to match the component ID to the corresponding component. |
| Methods in amber.server.panel with parameters of type ComponentHandler | |
protected PanelComponentInfo |
BasePanel.setUpComponent(ComponentHandler newComponent,
int x,
int y,
int width,
int height,
java.lang.String className,
java.lang.String parameters)
This function takes the parameters and creates a PanelComponentInfo containing the information on the component. |
void |
BasePanel.add(ComponentHandler newComponent,
java.lang.Object constraints)
This function adds a specified component to this panel. |
protected PanelComponentInfo |
BasePanel.addComponent(ComponentHandler newComponent,
int x,
int y,
int width,
int height,
java.lang.String className,
java.lang.String parameters,
boolean redrawPanel)
Deprecated. This function is now replaced by add() to make panels more like Java panels. |
void |
BasePanel.remove(ComponentHandler component)
This function removes the specified component from the corresponding remote Panel. |
void |
BasePanel.removeComponent(ComponentHandler component)
Deprecated. Now replaced with the function remove () for consistency with Java panels. |
PanelComponentInfo |
BasePanel.matchComponentToControl(ComponentHandler component)
This function is used to match the component to the corresponding PanelComponentInfo. |
void |
BasePanel.setSize(ComponentHandler component,
java.awt.Dimension dimension)
This function alters the size of the specified component in the panel. |
void |
BasePanel.setSize(ComponentHandler component,
int width,
int height)
This function alters the size of the specified component in the panel. |
void |
BasePanel.setLocation(ComponentHandler component,
java.awt.Point point)
This function moves the specified component in the panel. |
void |
BasePanel.setLocation(ComponentHandler component,
int x,
int y)
This function moves the specified component in the panel. |
void |
BasePanel.setBounds(ComponentHandler component,
java.awt.Rectangle rect)
This function moves the specified component in the panel. |
void |
BasePanel.setBounds(ComponentHandler component,
int x,
int y,
int width,
int height)
This function moves the specified component in the panel. |
PanelComponentInfo |
BasePanel.getPanelComponentAt(ComponentHandler source,
java.awt.Point point)
This function finds the control which is located at the specified location relative to the coordinate frame of the specified Component. |
PanelComponentInfo |
BasePanel.getPanelComponentAt(ComponentHandler source,
int x,
int y)
This function finds the control which is located at the specified location relative to the coordinate frame of the specified Component. |
void |
ContainerHandler.add(ComponentHandler newComponent,
java.lang.Object constraints)
This function adds a specified component to this panel. |
void |
ContainerHandler.remove(ComponentHandler component)
This function removes the specified component from the corresponding remote Panel. |
| Uses of ComponentHandler in amber.type.server |
| Methods in amber.type.server that return ComponentHandler | |
ComponentHandler |
PanelComponentInfo.getComponent()
Gets the data in the following variable: This is the handler for the corresponding remote panel component. |
| Methods in amber.type.server with parameters of type ComponentHandler | |
void |
PanelComponentInfo.setComponent(ComponentHandler data)
Sets the data in the following variable: This is the handler for the corresponding remote panel component. |
| Constructors in amber.type.server with parameters of type ComponentHandler | |
PanelComponentInfo(ComponentHandler component,
int x,
int y,
int width,
int height,
java.lang.String className,
java.lang.String parameters)
Initialising Constructor. |
|
PanelComponentInfo(ComponentHandler component,
int id,
int eventMask,
int x,
int y,
int width,
int height,
java.lang.String className,
java.lang.String parameters)
Initialising Constructor. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||