All pastes #2071955 Raw Edit

Someone

public text v1 · immutable
#2071955 ·published 2011-05-30 07:38 UTC
rendered paste body
		int ret;
		ExecutorService executor = Executors.newFixedThreadPool(1);

		pdxctw.popupWindow(frame);
			
	        FutureTask<int> future = new FutureTask<int>(
	                new Callable<int>()
	                {
	                    public int call()
	                    {
	                        return <--- what goes here ?
	                    }
	                });
	        executor.execute(future);
			
		ret = pdxctw.getXCTIdx();