Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » WindowBuilder » Fresh Eclipse Install and Window Builder Design tab crash(New install simple test and crashes)
Fresh Eclipse Install and Window Builder Design tab crash [message #1713176] Mon, 02 November 2015 02:08 Go to next message
Tom Moulton is currently offline Tom MoultonFriend
Messages: 2
Registered: November 2015
Junior Member
I have a fresh install of Eclipse IDE for Java Developers that includes WindowBuilder and a few other packages.

I am trying to learn how to use WB and when I open a file with WindowBuilder Editor, the source tab looks fine, but if I click the DESIGN tab a progress window opens and then waits a short time and eclipse crashes.

I have tried simple files freshly created by eclipse as well as existing code.

The last time I got these messages, but they are not constant, so may just be noise
[xcb] Unknown request in queue while dequeuing
[xcb] Most likely this is a multi-threaded client and XInitThreads has not been called
[xcb] Aborting, sorry about that.
java: ../../src/xcb_io.c:179: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed.


The simple source file is

package myname;

import java.awt.BorderLayout;
import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;

public class MainFrame extends JFrame {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private JPanel contentPane;

	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				try {
					MainFrame frame = new MainFrame();
					frame.setVisible(true);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		});
	}

	/**
	 * Create the frame.
	 */
	public MainFrame() {
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		setBounds(100, 100, 450, 300);
		contentPane = new JPanel();
		contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
		contentPane.setLayout(new BorderLayout(0, 0));
		setContentPane(contentPane);
	}

}


I also added a couple of screenshots as well

Any suggestions to get more specific details on why this is crashing?
This is really weird since this is a standard install!

Tom
Re: Fresh Eclipse Install and Window Builder Design tab crash [message #1713540 is a reply to message #1713176] Wed, 04 November 2015 21:32 Go to previous messageGo to next message
David Sullivan is currently offline David SullivanFriend
Messages: 1
Registered: November 2015
Junior Member
I'm having the exact same issue, WindowBuilder was working fine until I updated from Ubuntu 15.04 to 15.10, and I suspect it has something to do with 32 bit vs 64 bit java. Have you looked into that at all?
Re: Fresh Eclipse Install and Window Builder Design tab crash [message #1713548 is a reply to message #1713540] Thu, 05 November 2015 03:56 Go to previous messageGo to next message
Tom Moulton is currently offline Tom MoultonFriend
Messages: 2
Registered: November 2015
Junior Member
I installed the Oracle Java and it worked fine.

Windows Builder does not seem to like OpenJDK

tom
Re: Fresh Eclipse Install and Window Builder Design tab crash [message #1713690 is a reply to message #1713548] Fri, 06 November 2015 01:40 Go to previous messageGo to next message
Eric Clayberg is currently offline Eric ClaybergFriend
Messages: 979
Registered: July 2009
Location: Boston, MA
Senior Member
Sounds like that version of OpenJDK is buggy. Use Oracle Java or wait for the inevitable OpenJDK fix. I don't see anything here that indicates a bug in WindowBuilder itself.
Re: Fresh Eclipse Install and Window Builder Design tab crash [message #1771727 is a reply to message #1713690] Tue, 29 August 2017 23:35 Go to previous message
Jenrry Soto is currently offline Jenrry SotoFriend
Messages: 1
Registered: August 2017
Junior Member
i have installed neon with oracle-java8 in ubuntu-gnome 17.04 and crash it with windowbuilder
Previous Topic:WindowBuilder Pro Zip Installation
Next Topic:Need help about palette Contribution for custom Element
Goto Forum:
  


Current Time: Wed Apr 24 20:03:49 GMT 2024

Powered by FUDForum. Page generated in 0.03271 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top