I have a function in my program which sets the system clipboard to the given text
public void setClip(String arg)
{
while(true)
{
try{sysClip.setContents(new StringSelection(arg), this);}
catch(Exception e){continue;}
break;
}
}
It is within a class
public class MouseToucher extends Thread implements ClipboardOwner, NativeKeyListener, NativeMouseInputListener
When a ClipboardOwner looses ownership it is notified, so this is notified and when it happens it just places the contents of the clipboard into the clipboard and whomever does that last is the owner. So it is always? the owner, we can say for sure.. So the other two things MouseToucher does is watch for global mouse and keyboard inputs. So when the program has no focus it still can see user input.
Its from google code called JNativeHook, I think it works well. Though, sometimes about 30 minutes of use or a bunch of restarts during testing seems to make it fail unitl a full restart.
So My Question is, because this is a Thread what does that entitle to the setClip function? Does it mean that I could potentially call this function while it is already(read; still) trying to set the sysClip?
I feel as if I cannot reliably set the text, not matter how long I let it wait.. What could be the cause of this?