use of org.talend.designer.runtime.visualization.internal.actions.RefreshAction in project tdi-studio-se by Talend.
the class ThreadsSection method createActions.
/**
* Creates the actions.
*/
private void createActions() {
dumpThreadsAction = new DumpThreadsAction(this);
refreshAction = new RefreshAction(this);
layoutMenu = new MenuManager(Messages.layoutLabel, LAYOUT_MENU_ID);
}
use of org.talend.designer.runtime.visualization.internal.actions.RefreshAction in project tdi-studio-se by Talend.
the class SWTResourcesPage method createActions.
/**
* Creates the actions.
*/
private void createActions() {
refreshAction = new RefreshAction(section) {
};
clearSWTResourceAction = new ClearSWTResourceAction(this, section);
layoutMenu = new MenuManager(Messages.layoutLabel, LAYOUT_MENU_ID);
}
use of org.talend.designer.runtime.visualization.internal.actions.RefreshAction in project tdi-studio-se by Talend.
the class HeapHistogramPage method createActions.
/**
* Creates the actions.
*/
private void createActions() {
refreshAction = new RefreshAction(section);
garbageCollectorAction = new GarbageCollectorAction(section);
clearHeapDeltaAction = new ClearHeapDeltaAction(this, section);
dumpHeapAction = new DumpHeapAction(section);
dumpHprofAction = new DumpHprofAction(section);
}
Aggregations