blob: 31ba1ecb7165f8dff23468d5e6caecea968e2d3d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2012 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.variables;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.internal.ui.elements.adapters.DefaultVariableCellModifier;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.jdt.core.Signature;
import org.eclipse.jdt.debug.core.IJavaVariable;
/**
* @since 3.2
*
*/
public class JavaVariableCellModifier extends DefaultVariableCellModifier {
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.internal.ui.elements.adapters.DefaultVariableCellModifier#canModify(java.lang.Object,
* java.lang.String)
*/
@Override
public boolean canModify(Object element, String property) {
if (IDebugUIConstants.COLUMN_ID_VARIABLE_VALUE.equals(property)) {
if (element instanceof IJavaVariable) {
IJavaVariable var = (IJavaVariable) element;
if (var.supportsValueModification()){
try {
String signature = var.getSignature();
if (signature != null) {
if (signature.length() == 1) {
// primitive
return true;
}
return signature.equals("Ljava/lang/String;"); //$NON-NLS-1$
}
} catch (DebugException e) {
}
}
}
}
return false;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.internal.ui.elements.adapters.DefaultVariableCellModifier#getValue(java.lang.Object,
* java.lang.String)
*/
@Override
public Object getValue(Object element, String property) {
if (IDebugUIConstants.COLUMN_ID_VARIABLE_VALUE.equals(property)) {
if (element instanceof IJavaVariable) {
IJavaVariable var = (IJavaVariable) element;
if (isBoolean(var)) {
try {
if (var.getValue().getValueString().equals(Boolean.toString(true))) {
return Integer.valueOf(0);
}
return Integer.valueOf(1);
} catch (DebugException e) {
}
}
}
}
return super.getValue(element, property);
}
@Override
public void modify(Object element, String property, Object value) {
Object oldValue = getValue(element, property);
if (!value.equals(oldValue)) {
if (IDebugUIConstants.COLUMN_ID_VARIABLE_VALUE.equals(property)) {
if (element instanceof IJavaVariable) {
IJavaVariable var = (IJavaVariable) element;
if (isBoolean(var)) {
if (value instanceof Integer) {
switch (((Integer) value).intValue()) {
case 0:
super.modify(element, property, Boolean.toString(true));
return;
case 1:
super.modify(element, property, Boolean.toString(false));
return;
default:
// invalid value
return;
}
}
// invalid value
return;
}
}
}
super.modify(element, property, value);
}
}
/**
* Returns whether the given variable is a boolean.
*
* @param variable
* @return
*/
public static boolean isBoolean(IJavaVariable variable) {
try {
String signature = variable.getSignature();
return (signature.length() == 1 && signature.charAt(0) == Signature.C_BOOLEAN);
} catch (DebugException e) {
}
return false;
}
}