Uses of Interface
com.ibm.j9ddr.tools.ddrinteractive.IStructureFormatter
-
Packages that use IStructureFormatter Package Description com.ibm.j9ddr.tools.ddrinteractive com.ibm.j9ddr.vm29.tools.ddrinteractive.structureformat.extensions -
-
Uses of IStructureFormatter in com.ibm.j9ddr.tools.ddrinteractive
Classes in com.ibm.j9ddr.tools.ddrinteractive that implement IStructureFormatter Modifier and Type Class Description protected class
BaseStructureCommand.DefaultStructureFormatter
class
BaseStructureFormatter
Default IStructureFormatter implementation with safe default behaviourMethods in com.ibm.j9ddr.tools.ddrinteractive with parameters of type IStructureFormatter Modifier and Type Method Description FormatWalkResult
IFieldFormatter. format(String name, String type, String declaredType, int typeCode, long address, PrintStream out, Context context, IStructureFormatter structureFormatter)
Method called by the Structure command to format a field, after preFormat() and before postFormat()FormatWalkResult
IFieldFormatter. postFormat(String name, String type, String declaredType, int typeCode, long address, PrintStream out, Context context, IStructureFormatter structureFormatter)
Method called by the Structure command after preFormat() and format().FormatWalkResult
IFieldFormatter. preFormat(String name, String type, String declaredType, int typeCode, long address, PrintStream out, Context context, IStructureFormatter structureFormatter)
Method called by the Structure command before the format() method walk.protected void
BaseStructureCommand. registerDefaultStructureFormatter(IStructureFormatter formatter)
Inserts supplied structure formatter at the end of the list.protected void
BaseStructureCommand. registerStructureFormatter(IStructureFormatter formatter)
Inserts supplied structure formatter at the head of the list. -
Uses of IStructureFormatter in com.ibm.j9ddr.vm29.tools.ddrinteractive.structureformat.extensions
Classes in com.ibm.j9ddr.vm29.tools.ddrinteractive.structureformat.extensions that implement IStructureFormatter Modifier and Type Class Description class
J9ClassStructureFormatter
Structure Formatter that adds a suffix like this: Class name: com/ibm/oti/vm/BootstrapClassLoader To view static fields, use !class
J9MethodStructureFormatter
Structure formatter that adds the signature and j9rommethod pointer as a suffix after a !class
J9ModuleStructureFormatter
Structure Formatter that adds a suffix to the command "!class
J9ObjectStructureFormatter
Custom structure formatter for J9Object and J9Indexable objectclass
J9PackageStructureFormatter
Structure Formatter that adds a suffix like this: Package name: jdk/internal/perf To dump all modules that a package is exported to, use !class
J9ROMMethodStructureFormatter
-