blob: 583038dd5e6bdd1c1e89f7163f7dffcd4510e473 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Igor Fedorenko
* 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:
* Igor Fedorenko - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.launching.sourcelookup.advanced;
import org.eclipse.jdt.launching.JavaLaunchDelegate;
/**
* A launch delegate for launching local Java applications with advanced source lookup support.
*
* @since 3.10
* @provisional This is part of work in progress and can be changed, moved or removed without notice
*/
public class AdvancedJavaLaunchDelegate extends JavaLaunchDelegate {
public AdvancedJavaLaunchDelegate() {
allowAdvancedSourcelookup();
}
}