Module openj9.dtfj
Class FindAllModulesCommand
java.lang.Object
com.ibm.j9ddr.tools.ddrinteractive.Command
com.ibm.j9ddr.vm29.tools.ddrinteractive.commands.FindAllModulesCommand
- All Implemented Interfaces:
 ICommand
FindAllModules command displays all the modules loaded by the runtime
 
 Example:
                        !findallmodules
 Example output: 
                        jdk.javadoc                     !j9module 0x000001305F474498
                        jdk.attach                      !j9module 0x000001305F478798
                        java.prefs                      !j9module 0x000001305F478928
                        .....(A list of every module loaded by the runtime)
- 
Nested Class Summary
Nested classes/interfaces declared in class com.ibm.j9ddr.tools.ddrinteractive.Command
Command.CommandDescription - 
Field Summary
 - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidrun(String command, String[] args, Context context, PrintStream out) Executes the commandMethods declared in class com.ibm.j9ddr.tools.ddrinteractive.Command
addCommand, addSubCommand, dbgFindPatternInRange, getCommandDescriptions, getCommandNames, printDetailedHelp, recognises 
- 
Constructor Details
- 
FindAllModulesCommand
public FindAllModulesCommand() 
 - 
 - 
Method Details
- 
run
public void run(String command, String[] args, Context context, PrintStream out) throws DDRInteractiveCommandException Description copied from interface:ICommandExecutes the command- Parameters:
 command- Command string e.g. !j9xargs- Arguments for commandcontext- Context to work inout- PrintStream to write command output on- Throws:
 DDRInteractiveCommandException- If there is any problem running the command (incorrect usage, CorruptData etc.)
 
 -