org.hecl.rms
Class RMSModule

java.lang.Object
  extended by org.hecl.rms.RMSModule
All Implemented Interfaces:
HeclModule

public class RMSModule
extends java.lang.Object
implements HeclModule

The RMSModule class takes care of setup and tear-down of the resources needed for dealing with record stores.

Version:
1.0
Author:
David N. Welton

Constructor Summary
RMSModule()
           
 
Method Summary
 void loadModule(Interp interp)
          The loadModule method usually takes care of creating commands that are present in this module.
 void unloadModule(Interp interp)
          The unloadModule method takes care of any clean up that's necessary, such as unloading commands created by this module.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RMSModule

public RMSModule()
Method Detail

loadModule

public void loadModule(Interp interp)
                throws HeclException
Description copied from interface: HeclModule
The loadModule method usually takes care of creating commands that are present in this module.

Specified by:
loadModule in interface HeclModule
Parameters:
interp - an Interp value
Throws:
HeclException - if an error occurs

unloadModule

public void unloadModule(Interp interp)
                  throws HeclException
Description copied from interface: HeclModule
The unloadModule method takes care of any clean up that's necessary, such as unloading commands created by this module.

Specified by:
unloadModule in interface HeclModule
Parameters:
interp - an Interp value
Throws:
HeclException - if an error occurs