A B C D E F G I L M O P R S V W

M

Module - interface biz.junginger.modules.Module.
Application specific modules usually implement this interface to enable life-cycle support Modules can do not have to implement this interface (modules can be plain Java Objects too) if no dependencies exists.
ModuleInitializationListenerSupport - class biz.junginger.modules.core.ModuleInitializationListenerSupport.
Allows adding, removing, and firing of listener.
ModuleInitializationListenerSupport() - Constructor for class biz.junginger.modules.core.ModuleInitializationListenerSupport
 
ModuleInitializationSequence - class biz.junginger.modules.core.ModuleInitializationSequence.
Determines the initialization sequence of modules according to their depencies.
ModuleInitializationSequence(List) - Constructor for class biz.junginger.modules.core.ModuleInitializationSequence
 
ModuleInitializer - class biz.junginger.modules.core.ModuleInitializer.
Initializes a list of modules.
ModuleInitializer(List, Map, Properties, ModuleListener) - Constructor for class biz.junginger.modules.core.ModuleInitializer
 
ModuleListener - interface biz.junginger.modules.ModuleListener.
Enables keeping track of the module life-cycle by implementing call-back methods.
ModuleManager - class biz.junginger.modules.ModuleManager.
The ModuleManager offers methods to initialize, start, and shutdown all available modules.
ModuleManager() - Constructor for class biz.junginger.modules.ModuleManager
 
ModuleManager(Document) - Constructor for class biz.junginger.modules.ModuleManager
 
ModuleManager(String) - Constructor for class biz.junginger.modules.ModuleManager
 
ModuleManager(ModulesXmlParser) - Constructor for class biz.junginger.modules.ModuleManager
 
ModuleMetaData - class biz.junginger.modules.core.ModuleMetaData.
Represents metadata of a module (e.g.
ModuleMetaData() - Constructor for class biz.junginger.modules.core.ModuleMetaData
 
ModulesLauncher - class biz.junginger.modules.util.ModulesLauncher.
Subject to the MyModules Software Licence (based on the Apache Software License).
Copyright (c) 2003 Markus Oliver Junginger.
ModulesLauncher() - Constructor for class biz.junginger.modules.util.ModulesLauncher
 
ModulesXmlParser - class biz.junginger.modules.core.ModulesXmlParser.
Parses the XML descriptor and creates meta data objects.
ModulesXmlParser(String) - Constructor for class biz.junginger.modules.core.ModulesXmlParser
 
ModulesXmlParser(Document) - Constructor for class biz.junginger.modules.core.ModulesXmlParser
 
MyModules - class biz.junginger.modules.examples.MyModules.
MyModules is a convienent and safe way to access declared modules.
MyModules(Map) - Constructor for class biz.junginger.modules.examples.MyModules
 
MyModulesGenerator - class biz.junginger.modules.util.MyModulesGenerator.
Subject to the MyModules Software Licence (based on the Apache Software License).
Copyright (c) 2003 Markus Oliver Junginger.
MyModulesGenerator() - Constructor for class biz.junginger.modules.util.MyModulesGenerator
 
MyModulesGeneratorEngine - class biz.junginger.modules.util.MyModulesGeneratorEngine.
Subject to the MyModules Software Licence (based on the Apache Software License).
Copyright (c) 2003 Markus Oliver Junginger.
MyModulesGeneratorEngine(String, String, String) - Constructor for class biz.junginger.modules.util.MyModulesGeneratorEngine
 
main(String[]) - Static method in class biz.junginger.modules.examples.Example1
 
main(String[]) - Static method in class biz.junginger.modules.util.ModulesLauncher
 
main(String[]) - Static method in class biz.junginger.modules.util.MyModulesGenerator
 
main(String[]) - Static method in class biz.junginger.modules.util.SystemOutModulesLauncher
 
main(String[]) - Static method in class biz.junginger.modules.util.VisualModulesLauncher
 
moduleDestroy() - Method in interface biz.junginger.modules.Module
Destroys the module.
moduleDestroy() - Method in class biz.junginger.modules.examples.FrameModule
 
moduleDestroy() - Method in class biz.junginger.modules.util.AbstractModule
Destroys the module. The module should free all resources. The module will not be used after this call.
moduleDestroy() - Method in class biz.junginger.modules.util.AbstractRMIModule
Destroys the module. The module should free all resources. The module will not be used after this call.
moduleDestroy() - Method in class biz.junginger.modules.util.AbstractThreadModule
Destroys the module. The module should free all resources. The module will not be used after this call.
moduleInit(Map) - Method in interface biz.junginger.modules.Module
Initialization phase TWO of the module.
moduleInit(Map) - Method in class biz.junginger.modules.examples.GUIModule
 
moduleInit(Map) - Method in class biz.junginger.modules.util.AbstractModule
Initialization phase TWO of the module. Its individual dependencies ARE met. This is the main initialization phase and the module can use other modules, on which it depends.
moduleInit(Map) - Method in class biz.junginger.modules.util.AbstractRMIModule
Initialization phase TWO of the module. Its individual dependencies ARE met. This is the main initialization phase and the module can use other modules, on which it depends.
moduleInit(Map) - Method in class biz.junginger.modules.util.AbstractThreadModule
Initialization phase TWO of the module. Its individual dependencies ARE met. This is the main initialization phase and the module can use other modules, on which it depends.
modulePrepare(Properties) - Method in interface biz.junginger.modules.Module
Initialization phase ONE of the module.
modulePrepare(Properties) - Method in class biz.junginger.modules.examples.FrameModule
 
modulePrepare(Properties) - Method in class biz.junginger.modules.examples.LabelModule
 
modulePrepare(Properties) - Method in class biz.junginger.modules.util.AbstractModule
Initialization phase ONE of the module. Its individual dependencies ARE NOT met. To support multi-threading more efficiently, the module can prepare itself as much as possible at this point.
modulePrepare(Properties) - Method in class biz.junginger.modules.util.AbstractRMIModule
Initialization phase ONE of the module. Its individual dependencies ARE NOT met. To support multi-threading more efficiently, the module can prepare itself as much as possible at this point.
modulePrepare(Properties) - Method in class biz.junginger.modules.util.AbstractThreadModule
Initialization phase ONE of the module. Its individual dependencies ARE NOT met. To support multi-threading more efficiently, the module can prepare itself as much as possible at this point.
moduleStart() - Method in interface biz.junginger.modules.Module
The module should activate itself if nessesary (depending on the application only few modules have to be started).
moduleStart() - Method in class biz.junginger.modules.examples.FrameModule
 
moduleStart() - Method in class biz.junginger.modules.util.AbstractModule
The module should activate itself if nessesary (depending on the application only few modules have to be started). All Modules are already initialized when calling this method.
moduleStart() - Method in class biz.junginger.modules.util.AbstractRMIModule
The module should activate itself if nessesary (depending on the application only few modules have to be started). All Modules are already initialized when calling this method.
moduleStart() - Method in class biz.junginger.modules.util.AbstractThreadModule
Starts the Thread.

A B C D E F G I L M O P R S V W