| java.lang.Object com.methodhead.shim.MockModule
copyTo | public void copyTo(Page page)(Code) | | Copies the module to page.
|
create | public void create()(Code) | | Creates the module. This method is called when a module is instantiated
for a page and panel. The module should be initialized such that future
calls to
MockModule.configure and
MockModule.display are successful.
|
destroy | public void destroy()(Code) | | Destroys the module, freeing any resources associated with the module.
|
getName | public String getName()(Code) | | Returns a short descriptive name for the module.
|
init | public void init(Page page, String panel)(Code) | | Sets the module's page and panel. This method is called
before any other operations are performed.
|
isConfigurable | public boolean isConfigurable()(Code) | | Returns true if the module has a configuration interface; that
is, if
MockModule.configure actually does something.
|
isCopied | public static boolean isCopied()(Code) | | |
isDestroyed | public static boolean isDestroyed()(Code) | | |
isEditable | public boolean isEditable()(Code) | | |
setConfigurable | public static void setConfigurable(boolean configurable)(Code) | | |
setCopied | public static void setCopied(boolean copied)(Code) | | |
setDestroyed | public static void setDestroyed(boolean destroyed)(Code) | | |
setEditable | public static void setEditable(boolean editable)(Code) | | |
|
|