Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 36401
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T14:23:14+00:00 2026-05-10T14:23:14+00:00

I have a list, each item of which has several things in it, including

  • 0

I have a list, each item of which has several things in it, including a JProgressBar which can be updated a lot. Each time one of the items updates its JProgressBar, the ListDataListener on the list tries to scroll it to the visible range using

/*  * This makes the updating content item automatically scroll  * into view if it is off the viewport.  */ public void contentsChanged(final ListDataEvent evt) {     if (!EventQueue.isDispatchThread()) {         /**           * Make sure the scrolling happens in the graphics 'dispatch' thread.           */         EventQueue.invokeLater(new Runnable() {             public void run()  {                contentsChanged(evt);             }         });     }     if (playbackInProgress) {         int index = evt.getIndex0();         currentContentList.ensureIndexIsVisible(index);     } } 

Note that I’m trying to make sure the scrolling is done in the dispatch thread, since I thought maybe the problem was it being scrolled while it was repainting. And yet, I still have a problem where if things are really active, some of the list items paint outside of the viewport, overwriting what’s outside the JScrollPane. Forcing an exposure event will repaint those things, but it’s annoying.

Is there anything else I need to look out for to stop these things painting outside of their clipping area?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T14:23:15+00:00Added an answer on May 10, 2026 at 2:23 pm

    Have you tried explicitly enabling double-buffering on the JList and/or the components that it is drawing over? (with:setDoubleBuffered(boolean aFlag))

    Another thought is that you might need to exit the function immediately after delegating to the EDT. The way your code is written, it looks like the update will happen in both threads if ContentChanged is invoked from a non-EDT thread. Logging in the first if (or set a breakpoint in the if — but not in the runnable — should help determine if that is your problem.

    eg:

    public void contentsChanged(final ListDataEvent evt) {     if (!EventQueue.isDispatchThread())     {         log.debug('Delegating contentsChanged(...) to EDT');          EventQueue.invokeLater(new Runnable()          {             public void run()              {                 contentsChanged(evt);             }         });         // don't run ensureIndexIsVisible twice:         return;      }       if (playbackInProgress)      {          int index = evt.getIndex0();          currentContentList.ensureIndexIsVisible(index);      } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 78k
  • Answers 78k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer I'd recommend going onto github to look for projects. You… May 11, 2026 at 3:38 pm
  • added an answer To check if an url is valid instead of using… May 11, 2026 at 3:38 pm
  • added an answer Add a (byte) to cast it. As you could lose… May 11, 2026 at 3:38 pm

Related Questions

I have a list of items in a hierarchy, and I'm attempting to parse
Apologies in advance for the long-winded question. I'm really a database programmer, but have
I have set up a dialog with several tabs. One of these contains twenty
I have a class which has the following constructor public DelayCompositeDesigner(DelayComposite CompositeObject) { InitializeComponent();

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.