use of org.apache.sling.ide.eclipse.core.SetResolveSourcesCommand in project sling by apache.
the class DebugEditorSection method initialize.
private void initialize() {
final ISlingLaunchpadConfiguration config = launchpadServer.getConfiguration();
resolveSourcesButton.setSelection(config.resolveSourcesInDebugMode());
SelectionListener listener = new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
execute(new SetResolveSourcesCommand(server, resolveSourcesButton.getSelection()));
}
};
resolveSourcesButton.addSelectionListener(listener);
}
Aggregations