I have a program perfect for threading. Except at the core of the critical loop I call a Swing method. So how do I best do this? A) Surround the Swing.method() with locks. Sounds slow. B) Come up with ...
public class SpinnerSample { public static void main (String args[]) { Runnable runner = new Runnable() { public void run() { JFrame frame = new JFrame("JSpinner ...