// 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();
}