public interface DebuggerWindowProviderCallback
Modifier and Type | Method and Description |
---|---|
int |
getDebuggerWindowDefaultVisibility(Layout layout)
If the provider wants the debugger to manage the visibility of the window,
it needs to call this method in its own getDefaultVisibility() method, e.g.
|
void |
install()
Deprecated.
Debugger Extenders should provide their own DockableFactories
and no longer use the core DockableFactory to create and
manage their windows
|
void |
setDisplayHideFinalFields(boolean displaySetting)
The provider can tell the debugger to hide final fields or not
when returning fields of objects.
|
void |
setDisplayHideNullArrayElements(boolean displaySetting)
The provider can tell the debugger to hide null array elements or not
when returning array elements.
|
void |
setDisplayHideStaticFields(boolean displaySetting)
The provider can tell the debugger to hide static fields or not
when returning fields of objects.
|
void |
setDisplayHideSyntheticFields(boolean displaySetting)
The provider can tell the debugger to hide synthetic fields or not
when returning fields of objects.
|
void |
setDisplayShowPackages(boolean displaySetting)
The provider can tell the debugger to use package info or not
when returning types.
|
void |
setDisplaySortFieldsByName(boolean displaySetting)
The provider can tell the debugger to sort fields by name or not
when returning fields of objects.
|
@Deprecated void install()
int getDebuggerWindowDefaultVisibility(Layout layout)
layout
- A layoutvoid setDisplayShowPackages(boolean displaySetting)
displaySetting
- If true, use fully qualified type names.void setDisplaySortFieldsByName(boolean displaySetting)
displaySetting
- If true, sort fields by namevoid setDisplayHideStaticFields(boolean displaySetting)
displaySetting
- If true, hide static fieldsvoid setDisplayHideFinalFields(boolean displaySetting)
displaySetting
- If true, hide final fieldsvoid setDisplayHideSyntheticFields(boolean displaySetting)
displaySetting
- If true, hide synthetic fieldsvoid setDisplayHideNullArrayElements(boolean displaySetting)
displaySetting
- If true, hide null array elements