blob: 8eb62111ef753e02e984160e98a99cafb9685710 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.internal.core.model;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IValue;
import org.eclipse.debug.core.model.IVariable;
import org.eclipse.wst.jsdt.debug.core.jsdi.Property;
import org.eclipse.wst.jsdt.debug.core.model.IJavaScriptValue;
/**
* Default implementation of an {@link IVariable}
*
* @see JavaScriptValue
* @see JavaScriptStackFrame
* @since 1.0
*/
public class JavaScriptProperty extends JavaScriptDebugElement implements IVariable {
private Property property;
private IJavaScriptValue value = null;
/**
* Constructor
*
* @param target
*/
public JavaScriptProperty(JavaScriptValue jsdiValue, Property property) {
super(jsdiValue.getJavaScriptDebugTarget());
this.property = property;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IVariable#getName()
*/
public String getName() {
return property.name();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IVariable#getReferenceTypeName()
*/
public String getReferenceTypeName() throws DebugException {
return getValue().getReferenceTypeName();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IVariable#getValue()
*/
public IValue getValue() throws DebugException {
if (value == null) {
value = JavaScriptValue.createValue(getJavaScriptDebugTarget(), this.property.value());
}
return value;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IVariable#hasValueChanged()
*/
public boolean hasValueChanged() throws DebugException {
return false;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
*/
public Object getAdapter(Class adapter) {
if (adapter == JavaScriptProperty.class) {
return this;
}
return super.getAdapter(adapter);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IValueModification#setValue(java.lang.String )
*/
public void setValue(String expression) throws DebugException {
notSupported("Javascript variables do not support being edited", null); //$NON-NLS-1$
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IValueModification#setValue(org.eclipse. debug.core.model.IValue)
*/
public void setValue(IValue value) throws DebugException {
notSupported("Javascript variables do not support being edited", null); //$NON-NLS-1$
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IValueModification#supportsValueModification ()
*/
public boolean supportsValueModification() {
return false;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IValueModification#verifyValue(java.lang .String)
*/
public boolean verifyValue(String expression) throws DebugException {
return false;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.debug.core.model.IValueModification#verifyValue(org.eclipse .debug.core.model.IValue)
*/
public boolean verifyValue(IValue value) throws DebugException {
return false;
}
}