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 8932927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:24:56+00:00 2026-06-15T09:24:56+00:00

I am getting following excpetion Exception in thread AWT-EventQueue-0 java.lang.NoClassDefFoundError: org/divxdede/text/TimeFormat at org.divxdede.swing.busy.ui.BasicBusyLayerUI.<init>(BasicBusyLayerUI.java:102) at

  • 0

I am getting following excpetion

Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: org/divxdede/text/TimeFormat
at org.divxdede.swing.busy.ui.BasicBusyLayerUI.<init>(BasicBusyLayerUI.java:102)
at org.divxdede.swing.busy.ui.BasicBusyLayerUI.<init>(BasicBusyLayerUI.java:138)
at org.divxdede.swing.busy.JBusyComponent.<init>(JBusyComponent.java:105)
at jewelleryerpapplication.GUI.Gold.IssueToRep1.<init>(IssueToRep1.java:136)
at jewelleryerpapplication.GUI.Gold.IssueToRep1.Instance(IssueToRep1.java:164)

I added following Libraries to my project

  • jbusycomponent-1.2.2.jar
  • SwingX 1.6
  • JXLayer 3.0.4
  • Jarvis-Commons 0.1

When I added the JXBusyLayer Component to my JFrame (while wrapping existing JTable Component with JXBusyLayer Component) using the code below

     JBusyComponent<JTable> busytblDetailInfo = new JBusyComponent<JTable>(tblDetailInfo);
     myJFrame.add(busytblDetailInfo);

using the Link!

 Edit

Added the library Commons-0.2 and the exception disappears.

Error 2 !

Now No Data is seen on the control(JTable) which is wrapped by JBusyControl.

Edit 2

Added the code below(by comment of @MadProgrammer) but the problem reamins no data to be viewed.

        jFrame.remove(tblDetailInfo);
        DefaultTableModel dtm = new DefaultTableModel(data, header);
        tblDetailInfo.setModel(dtm);
        JBusyComponent<JTable> busytblDetailInfo = new JBusyComponent<JTable>(tblDetailInfo_OrderInfo);
        jFrame.add(busytblDetailInfo);
  • 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. Editorial Team
    Editorial Team
    2026-06-15T09:24:58+00:00Added an answer on June 15, 2026 at 9:24 am

    I found that it doesn’t like being wrapped in a JScrollPane which is weird in my opinion 😛

    (I lie, BusyComponent “likes” being added to a JScrollPane; but you probably don’t want to)

    enter image description here

    public class TestBusy {
    
        public static void main(String[] args) {
            new TestBusy();
        }
    
        public TestBusy() {
            EventQueue.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                    } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    }
    
                    JFrame frame = new JFrame();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setLayout(new BorderLayout());
                    frame.add(new ContentPane());
                    frame.pack();
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                }
            });
        }
    
        public class ContentPane extends JPanel {
    
            private JTable table;
    
            public ContentPane() {
                setLayout(new BorderLayout());
                table = new JTable();
                table.setFillsViewportHeight(true);
    
                DefaultTableModel model = new DefaultTableModel();
                model.addColumn("One");
                model.addColumn("Two");
                model.addColumn("Three");
                model.addColumn("Four");
                model.addColumn("Five");
                model.addColumn("Six");
                model.addColumn("Seven");
                table.setModel(model);
                JScrollPane scrollPane = new JScrollPane(table);
    
                JBusyComponent<JScrollPane> busyComponent = new JBusyComponent<JScrollPane>(scrollPane);
                add(busyComponent);
    
                busyComponent.getBusyModel().setMinimum(0);
                busyComponent.getBusyModel().setMaximum(10000);
    
                busyComponent.setBusy(true);
                BusySwingWorker<Object, Object[]> worker = new BusySwingWorker<Object, Object[]>(busyComponent.getBusyModel()) {
    
                    @Override
                    protected void process(List<Object[]> chunks) {
                        DefaultTableModel model = (DefaultTableModel) table.getModel();
                        for (Object[] chunk : chunks) {
                            model.addRow(chunk);
                        }
                    }
    
                    @Override
                    protected Object doInBackground() throws Exception {
                        for (int index = 0; index < 1000; index++) {
                            setProgress(Math.round((index / 1000f) * 100f));
                            publish(new Object[]{index, "B", "C", "D", "E", "F", "G"});
                            Thread.sleep(5);
                        }
                        return null;
                    }
                };
                worker.execute();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm getting the following NullPointerException: Exception in thread AWT-EventQueue-0 java.lang.NullPointerException at com.foo.JawsFileChooser.a(SourceFile:28) at com.foo.JawsFileChooser$1.actionPerformed(SourceFile:91)
I am getting the following exception Exception in thread AWT-EventQueue-0 java.lang.NullPointerException at Java.CompileFile.doCompilation(CompileFile.java:48) at
I'm getting the following error message : Exception in thread main java.lang.NoClassDefFoundError: LU62XnsCvr (wrong
I am getting the following error Exception in thread main java.lang.ClassCastException: org.hibernate.impl.SessionFactoryImpl cannot be
I am getting the following exception in a Java app: Exception in thread "AWT-EventQueue-0"
I am getting the following exception when running an applet: Exception in thread AWT-EventQueue-4
I am getting the following exception: Exception in thread main java.lang.ClassCastException: javax.crypto.CipherInputStream cannot be
I'm getting the following errors: Exception in thread main java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.nextEntry(HashMap.java:810) at java.util.HashMap$KeyIterator.next(HashMap.java:845)
I am getting following exception while authenticating a user: Exception in thread main org.springframework.ldap.PartialResultException:
I am getting the following exception while adding data into database: org.hibernate.HibernateException: The database

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.