com.ibm.eNetwork.HOD
Interface CustomInterface


public interface CustomInterface

Anyone wishing to create a CustomInterface Applet to be run within Alternate Terminal 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 Summary
 void init(HIFramework framework)
           
 void update(HIFramework framework)
           
 

Method Detail

init

public 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(com.ibm.eNetwork.HOD.HIFramework), HIFramework

update

public 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