FileDocCategorySizeDatePackage
Main.javaAPI DocAzureus 3.0.3.41676Thu May 17 12:45:30 BST 2007com.aelitis.azureus.ui

Main

public class Main extends Object
This is the main of all mains!
author
TuxPaper
created
May 17, 2007

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

		
		// For now, fire off the old org.gudy.azureus2.ui.swt.Main class
		//
		// In the future, this class may do some logic to find out available
		// startup classes and pick one (like the uis one does)
		try {
			final Class startupClass = Class.forName("org.gudy.azureus2.ui.swt.Main");

			final Constructor constructor = startupClass.getConstructor(new Class[] {
				String[].class
			});
			
			constructor.newInstance(new Object[] {
				args
			});

		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}