blob: 216126308f66eba6ea56a7681ca6fba28970e343 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.pde.internal.ui.editor;
/**
* This is an interface used only by subclasses of PDELauncherFormPage.
* Its purpose is to allow code reuse between direct subclasses of
* PDELauncherFormPage and subclasses of LaunchShortcutOverviewPage.
*/
public interface ILauncherFormPageHelper {
public void preLaunch();
public Object getLaunchObject();
public boolean isOSGi();
}