blob: aa9a2df647ddfb07af1ce657f85ffed8baff2d31 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST.
*
* 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:
* CEA LIST Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.moka.debug.model.data.mapping.variables;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IValue;
import org.eclipse.papyrus.moka.debug.engine.MokaDebugTarget;
public class ItemVariableAdapter extends MokaVariableAdapter<IValue> {
// Index corresponding to the item
protected int index;
public ItemVariableAdapter(MokaDebugTarget debugTarget, int index, IValue value) {
super(debugTarget, value);
this.index = index;
}
@Override
public IValue getValue() throws DebugException {
// The adapted variable is the value associated to the item variable
return this.adaptedVariable;
}
@Override
public String getName() throws DebugException {
// Variable name is an of the form [X] where X is an integer
return "[" + index + "]";
}
}