blob: 6f5fbd577738e5702661f8ece23f8ba0470f05a3 [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.request;
import org.eclipse.wst.jsdt.debug.core.jsdi.request.VMDeathRequest;
import org.eclipse.wst.jsdt.debug.opera.internal.jsdi.VirtualMachineImpl;
/**
* Default {@link VMDeathRequest} implementation for Opera
*
* @since 0.1
*/
public class VMDeathRequestImpl extends EventRequestImpl implements VMDeathRequest {
/**
* Constructor
* @param vm
*/
public VMDeathRequestImpl(VirtualMachineImpl vm) {
super(vm);
}
}