Nie można uzyskać wyświetlania SWT w systemie Mac OS X

Używam systemu Mac OS X Snow Leopard i nie chcę uzyskać dostępu do ekranu z aktywatora w pakiecie OSGi.

Poniżej znajduje się metoda uruchomienia mojego aktywatora:

@Override
public void start(BundleContext context) throws Exception {
    ExecutorService service = Executors.newSingleThreadExecutor();
    service.execute(new Runnable() {

        @Override
        public void run() {
            Display display = Display.getDefault();
            Shell shell = new Shell(display);
            Text helloText = new Text(shell, SWT.CENTER);
            helloText.setText("Hello SWT!");
            helloText.pack();
            shell.pack();
            shell.open();
            while (!shell.isDisposed()) {
                if (!display.readAndDispatch())
                    display.sleep();
            }
            display.dispose();
        }
    });
}

Wywołanie tego kodu w środowisku Windows działa poprawnie, ale wdrożenie w systemie Mac OS X daje następujące dane wyjściowe:

2009-10-14 17:17:54.050 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x101620d20 of class NSCFString autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.081 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x100119240 of class NSCFNumber autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.084 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x1001024b0 of class NSCFString autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.086 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x7fff701d7f70 of class NSCFString autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.087 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x100113330 of class NSCFString autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.092 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x101624540 of class NSCFData autoreleased with no pool in place - just leaking
.
.
.

Użyłem argumentu VM -XstartOnFirstThread bez żadnego szczęścia. Jestem na 64-bitowym kakao, ale próbowałem też 32-bitowego kakao.

Podczas próby Carbon otrzymuję następujący błąd:

Invalid memory access of location 00000020 eip=9012337c

Podczas debugowania w klasie Display widzę, że tablica Displays [] zawiera tylko odniesienia puste.

questionAnswers(4)

yourAnswerToTheQuestion