Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] How to launch a Carbon app without any wrappers?

Hi Andre!

	import java.awt.Frame;
	public class Test {
		public static void main(String[] args) {
			new Frame().show();
		}
	}

There is an application in Developer/Applications called MRJAppBuilder. Maybe that's what you are looking for. It creates application bundles out of java classes/jars. You can also include other jars. MRJAppBuilder takes care of your classpath.

Hope that helps,
Björn
--
"The only problem with Microsoft is they just have no taste."
- Steve Jobs, Apple CEO



Back to the top