blob: 0b732c4c5aa0e83b689f2e0f7acce4c3a67c1d3c [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.core.model;
import org.eclipse.jdt.debug.core.IJavaValue;
import org.eclipse.jdt.internal.debug.core.logicalstructures.JDIPlaceholderVariable;
/**
* This variable is created as the child of <code>JDIReferenceListValue</code>.
* It represents one reference to a root object stored in the parent value.
*
* @see JDIReferenceListValue
* @since 3.3
*/
public class JDIReferenceListEntryVariable extends JDIPlaceholderVariable {
/**
* Constructor.
*
* @param name
* The name that this variable should use as its label
* @param reference
* The value that this variable contains
*/
public JDIReferenceListEntryVariable(String name, IJavaValue reference) {
super(name, reference);
}
}