home *** CD-ROM | disk | FTP | other *** search
- package sun.awt.motif;
-
- class SelectionThread extends Thread {
- // $FF: renamed from: s sun.awt.motif.X11Selection
- X11Selection field_0;
- int[] targets;
-
- public SelectionThread(X11Selection var1, int[] var2) {
- super("AWT-Selection");
- this.field_0 = var1;
- this.targets = var2;
- }
-
- public void run() {
- synchronized(this){}
-
- try {
- if (this.targets == null) {
- this.field_0.pGetTransferTargets();
- } else {
- this.field_0.pGetTransferData(this.targets);
- }
-
- this.notifyAll();
- } catch (Throwable var3) {
- throw var3;
- }
-
- }
- }
-