blob: 599e82c3e0423a46e2985eaba9cdab9bd77c7cc5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2021 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.ui.actions;
import org.eclipse.jdt.internal.debug.ui.IJDIPreferencesConstants;
public class ColorizeStackFramesAction extends ToggleBooleanPreferenceAction {
/*
* (non-Javadoc)
*
* @see org.eclipse.jdt.internal.debug.ui.actions.ViewFilterAction#getPreferenceKey()
*/
@Override
protected String getPreferenceKey() {
return IJDIPreferencesConstants.PREF_COLORIZE_STACK_FRAMES;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jdt.internal.debug.ui.actions.ViewFilterAction#getCompositeKey()
*/
@Override
protected String getCompositeKey() {
return getPreferenceKey();
}
}