1 /******************************************************************************* 2 * Copyright (c) 2006, 2007 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * Andrew Niefer - IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.core.launcher; 12 13 /** 14 * This class exists only for backwards compatibility. 15 * The real Main class is now org.eclipse.equinox.launcher.Main. 16 * <p> 17 * <b>Note:</b> This class should not be referenced programmatically by 18 * other Java code. This class exists only for the purpose of launching Eclipse 19 * from the command line. To launch Eclipse programmatically, use 20 * org.eclipse.core.runtime.adaptor.EclipseStarter. The fields and methods 21 * on this class are not API. 22 */ 23 public class Main { 24 25 /** 26 * Pass our args along to the real Main class. 27 * @param args 28 */ 29 public static void main(String[] args) { 30 org.eclipse.equinox.launcher.Main.main(args); 31 } 32 33 } 34