blob: e8f052fd9b48eb8e077af9afcbccad44ffa88b47 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.debug.opera.internal.jsdi;
import org.eclipse.wst.jsdt.debug.core.jsdi.Mirror;
import org.eclipse.wst.jsdt.debug.core.jsdi.VirtualMachine;
/**
* Default {@link Mirror} object for Opera
*
* @since 0.1
*/
public class MirrorImpl implements Mirror {
private VirtualMachineImpl vm = null;
/**
* Constructor
* <br><br>
* This constructor is only to be used when the {@link Mirror} is in fact the {@link VirtualMachine} object
*
* @noreference This constructor is not intended to be referenced by clients.
*/
public MirrorImpl() {
vm = (VirtualMachineImpl) this;
}
/**
* Constructor
*/
public MirrorImpl(VirtualMachineImpl vm) {
this.vm = vm;
}
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.debug.core.jsdi.Mirror#virtualMachine()
*/
public VirtualMachine virtualMachine() {
return this.vm;
}
}