}
if(arguments[0].equalsIgnoreCase("bind")){
final CountDownLatch countDownLatch = new CountDownLatch(1);
final IntBuffer buffer = IntBuffer.allocate(1);
BindManagerDelegate delegate = new BindManagerDelegate() {
@Override
public void nativeKeyPressed(NativeKeyEvent nativeKeyEvent) {
buffer.put(nativeKeyEvent.getKeyCode());
countDownLatch.countDown();
this.finish();