Interface DebuggerTable
-
public interface DebuggerTableDebugger table in emuStudio. Allows to set up custom columns by a plugin. If no plugin sets the columns, emuStudio will provide default columns.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetDebuggerColumns(java.util.List<DebuggerColumn<?>> columns)Set custom columns in the debugger table.
-
-
-
Method Detail
-
setDebuggerColumns
void setDebuggerColumns(java.util.List<DebuggerColumn<?>> columns)
Set custom columns in the debugger table. The call has immediate effect. Subsequent calls are allowed; plugins can change the columns at any time. However, it is not recommended to change it once the columns are set. NOTE: Should be called inPlugin.initialize()method, not sooner.- Parameters:
columns- non-null debug columns- See Also:
AddressColumn,BreakpointColumn,MnemoColumn,OpcodeColumn
-
-