blob: 6123723bba790da3cdc16c24e8f6a19d8d59afdc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2022 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;
/**
* Opens the concrete type hierarchy of variable - i.e. it's value's actual type.
*/
public class OpenVariableConcreteTypeHierarchyAction extends OpenVariableConcreteTypeAction {
/* (non-Javadoc)
* @see org.eclipse.jdt.internal.debug.ui.actions.OpenTypeAction#isHierarchy()
*/
@Override
protected boolean isHierarchy() {
return true;
}
}