blob: 3d2e56402d47b7492cdf32043b79e5b71ecb6beb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2009 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:
* Andrew Niefer - IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.launcher;
/**
* This class exists only for backwards compatibility.
* The real Main class is now org.eclipse.equinox.launcher.Main.
* <p>
* <b>Note:</b> This class should not be referenced programmatically by
* other Java code. This class exists only for the purpose of launching Eclipse
* from the command line. To launch Eclipse programmatically, use
* org.eclipse.core.runtime.adaptor.EclipseStarter. The fields and methods
* on this class are not API.
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
* @noreference This class is not intended to be referenced by clients.
*
* @deprecated
*
* This API is planned to be deleted, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=544262
*/
@Deprecated
public class Main {
/**
* Pass our args along to the real Main class.
*
* @param args the given arguments
* @noreference This method is not intended to be referenced by clients.
*/
public static void main(String[] args) {
org.eclipse.equinox.launcher.Main.main(args);
}
}