blob: 2da3c4a7f7f3b572e119085bcd37bbf88fb89787 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.core.logicalstructures;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.model.IDebugTarget;
import org.eclipse.debug.core.model.IVariable;
import org.eclipse.jdt.debug.core.IJavaFieldVariable;
import org.eclipse.jdt.debug.core.IJavaObject;
import org.eclipse.jdt.debug.core.IJavaThread;
import org.eclipse.jdt.debug.core.IJavaType;
import org.eclipse.jdt.debug.core.IJavaValue;
import org.eclipse.jdt.debug.core.IJavaVariable;
/**
* A proxy to an object representing the logical structure of that object.
*/
public class LogicalObjectStructureValue implements IJavaObject {
private IJavaObject fObject;
private IJavaVariable[] fVariables;
/**
* Constructs a proxy to the given object, with the given variables
* as children.
*
* @param object original object
*/
public LogicalObjectStructureValue(IJavaObject object, IJavaVariable[] variables) {
fObject = object;
fVariables = variables;
}
/* (non-Javadoc)
* @see org.eclipse.jdt.debug.core.IJavaObject#sendMessage(java.lang.String, java.lang.String, org.eclipse.jdt.debug.core.IJavaValue[], org.eclipse.jdt.debug.core.IJavaThread, boolean)
*/
public IJavaValue sendMessage(String selector, String signature, IJavaValue[] args, IJavaThread thread, boolean superSend) throws DebugException {
return fObject.sendMessage(selector, signature, args, thread, superSend);
}
/* (non-Javadoc)
* @see org.eclipse.jdt.debug.core.IJavaObject#sendMessage(java.lang.String, java.lang.String, org.eclipse.jdt.debug.core.IJavaValue[], org.eclipse.jdt.debug.core.IJavaThread, java.lang.String)
*/
public IJavaValue sendMessage(String selector, String signature, IJavaValue[] args, IJavaThread thread, String typeSignature) throws DebugException {
return fObject.sendMessage(selector, signature, args, thread, typeSignature);
}
/* (non-Javadoc)
* @see org.eclipse.jdt.debug.core.IJavaObject#getField(java.lang.String, boolean)
*/
public IJavaFieldVariable getField(String name, boolean superField) throws DebugException {
return fObject.getField(name, superField);
}
/* (non-Javadoc)
* @see org.eclipse.jdt.debug.core.IJavaObject#getField(java.lang.String, java.lang.String)
*/
public IJavaFieldVariable getField(String name, String typeSignature) throws DebugException {
return fObject.getField(name, typeSignature);
}
/* (non-Javadoc)
* @see org.eclipse.jdt.debug.core.IJavaValue#getSignature()
*/
public String getSignature() throws DebugException {
return fObject.getSignature();
}
/* (non-Javadoc)
* @see org.eclipse.jdt.debug.core.IJavaValue#getJavaType()
*/
public IJavaType getJavaType() throws DebugException {
return fObject.getJavaType();
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IValue#getReferenceTypeName()
*/
public String getReferenceTypeName() throws DebugException {
return fObject.getReferenceTypeName();
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IValue#getValueString()
*/
public String getValueString() throws DebugException {
return fObject.getValueString();
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IValue#isAllocated()
*/
public boolean isAllocated() throws DebugException {
return fObject.isAllocated();
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IValue#getVariables()
*/
public IVariable[] getVariables() {
return fVariables;
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IValue#hasVariables()
*/
public boolean hasVariables() {
return fVariables.length > 0;
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IDebugElement#getModelIdentifier()
*/
public String getModelIdentifier() {
return fObject.getModelIdentifier();
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IDebugElement#getDebugTarget()
*/
public IDebugTarget getDebugTarget() {
return fObject.getDebugTarget();
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IDebugElement#getLaunch()
*/
public ILaunch getLaunch() {
return fObject.getLaunch();
}
/* (non-Javadoc)
* @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
*/
public Object getAdapter(Class adapter) {
return fObject.getAdapter(adapter);
}
}