You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/qtjava/javalib/org/trinitydesktop/qt/QtUtils.java

16 lines
301 B

package org.trinitydesktop.qt;
public class QtUtils {
public interface Compute {
public Object run();
}
public static native Object execSyncOnGUIThread(Compute c);
public static native void execSyncOnGUIThread(Runnable r);
public static native void execAsyncOnGUIThread(Runnable r);
}