blob: 60b6995a2cce0b635ae08c6e4ab95cf82a2cf42e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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.debug.core.DebugException;
import org.eclipse.jdt.debug.core.IJavaDebugTarget;
import org.eclipse.jdt.internal.debug.core.model.JDIArrayEntryVariable;
import org.eclipse.jdt.internal.debug.ui.IJDIPreferencesConstants;
import org.eclipse.jdt.internal.debug.ui.JDIDebugUIPlugin;
import org.eclipse.jface.viewers.Viewer;
/**
* Shows non-final static variables
*/
public class ShowNullArrayEntriesAction extends ViewFilterAction {
public ShowNullArrayEntriesAction() {
super();
}
/**
* @see ViewFilterAction#getPreferenceKey()
*/
@Override
protected String getPreferenceKey() {
return IJDIPreferencesConstants.PREF_SHOW_NULL_ARRAY_ENTRIES;
}
/**
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
@Override
public boolean select(Viewer viewer, Object parentElement, Object element) {
if (getValue()) {
// when on, filter nothing
return true;
}
if (element instanceof JDIArrayEntryVariable) {
JDIArrayEntryVariable variable = (JDIArrayEntryVariable)element;
try {
return !variable.getValue().equals(((IJavaDebugTarget)variable.getDebugTarget()).nullValue());
} catch (DebugException e) {
JDIDebugUIPlugin.log(e);
}
}
return true;
}
}