blob: c4177996974f6f1f8b89ee8223399e75d96ba268 [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.launching;
import org.eclipse.debug.core.ILaunchManager;
import org.eclipse.jdt.launching.IVMInstallType;
import org.eclipse.jdt.launching.IVMRunner;
/**
* A 1.1.x VM
*/
public class Standard11xVM extends StandardVM {
public Standard11xVM(IVMInstallType type, String id) {
super(type, id);
}
/**
* @see org.eclipse.jdt.launching.IVMInstall#getVMRunner(String)
*/
@Override
public IVMRunner getVMRunner(String mode) {
if (ILaunchManager.RUN_MODE.equals(mode)) {
return new Standard11xVMRunner(this);
}
return null;
}
}