All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.ibm.eNetwork.HOD.CustomInterface

public interface CustomInterface
Anyone wishing to create a CustomInterface Applet to be run within Screen Customizer must implement this interface. This interface provides two methods which should be used to make all necessary connections between the user applet and the active session.


Method Index

 o init(HIFramework)
 o update(HIFramework)

Methods

 o init
 public abstract void init(HIFramework framework)
Parameters:
framework - The HIFramework for the current session. An initialization method called immediately after invocation via the null constructor. This method is where the program may use the HIFramework to hook up to the current session, applet and bean. It is left to the writer of the CustomInterface to make these necessary connections.
See Also:
update, HIFramework
 o update
 public abstract void update(HIFramework framework)
Parameters:
framework - The HIFramework for the current session. Update is called if the HIFramework associated with the active session changes. It is up to the user to use this new HIFramework to update all internal pointers to objects obtained from an old HIFramework or else run the risk of having pointers to objects no longer used by the current session.
See Also:
HIFramework

All Packages  Class Hierarchy  This Package  Previous  Next  Index