I have following java code in my thread class:

@Override    
public void run() {

    JFrame window = new JFrame("Visualization POC");
    window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    while (true) {
        window.setVisible(false);

        Layout<Node,Edge> layout = new CircleLayout<Node, Edge>(graph);
        layout.setSize(new Dimension(300, 300));

        BasicVisualizationServer<Node, Edge> vv = new BasicVisualizationServer<Node, Edge>(layout);
        vv.setPreferredSize(new Dimension(350, 350));
        vv.getRenderContext().setVertexFillPaintTransformer(new NodeColorTransformer());
        vv.getRenderContext().setEdgeDrawPaintTransformer(new EdgeColorTransformer());

        window.getContentPane().add(vv);
        window.pack();
        window.setVisible(true);

        try {
            Thread.sleep(ONE_SECOND);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

I want to use it to refresh state of graph visualization, but I got stuck on massive problem. When the block of code creating layout and setting content of JFrame is inside while loop it is not displayed in output window. When I place it before while, it works fine but it isn't that what I want. I run this thread via SpringUtilities.invokeLater in my main class.

I can see that the window is refresh, because it is blinking for a while. I'm looking forward for any tips.

link|improve this question
1  
Don't sleep on the EDT; do see Concurrency in Swing. – trashgod Jan 21 at 21:46
But one of the task of background thread is to update data for every second. Should it be then launch every second in main thread in a loop or something? – tomi891 Jan 22 at 10:34
Ok, after research I found answer for looping thread execution. Two key classes: Timer and TimerTask from java.util package – tomi891 Jan 22 at 11:17
beware: while you might use those classes in the util package, they don't help you in accessing all Swing component properties on the EDT – kleopatra Jan 22 at 11:50
@kleopatra raises a good point; also consider javax.swing.Timer, compared here. – trashgod Jan 22 at 12:03
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.