Community
Participate
Working Groups
My application was running normally, and suddenly the problem appeared and I can not solve. I expect a prompt response. Of course, thank you very much for your attention. -- Configuration Details -- Product: Eclipse 1.4.1.20110909-0613 (org.eclipse.epp.package.java.product) Installed Features: org.eclipse.jdt 3.7.1.r371_v20110810-0800-7z8gFcoFMLfTabvKsR5Qm9rBGEBK
There is no problem description here at all. Please provide a detailed problem description with a complete test case and associated Eclipse .log files or stack traces.
Created attachment 207816 [details] In this file the errors occurs
What "error"? Please provide any relevant stack traces and/or your complete Eclipse ".log" file.
Created attachment 207817 [details] this picture shows the error
Created attachment 207818 [details] I'm sending the complete report
I compile the code with the command line "javac.exe", and works fine. I not understand nothing.(In reply to comment #1) > There is no problem description here at all. Please provide a detailed problem > description with a complete test case and associated Eclipse .log files or stack > traces.
Possible GroupLayout issue... java.lang.NullPointerException at org.eclipse.wb.internal.swing.java6.model.SwingGroupLayoutCodeSupport.convertPadding(SwingGroupLayoutCodeSupport.java:228) at org.eclipse.wb.internal.swing.java6.model.SwingGroupLayoutCodeSupport.setPaddingType(SwingGroupLayoutCodeSupport.java:210) at org.eclipse.wb.internal.layout.group.model.GroupLayoutParserVisitor2.endVisit(GroupLayoutParserVisitor2.java:183)
Fixed in trunk. Mostly generic issue, it attempted to rename a layout variable and then parse layout against new name, which is incorrect. Thanks for Kosta for writing a test. :)
Fixed
(In reply to comment #9) > Fixed I see you solved the problem and I am very grateful to you, but excuse my ignorance and that just started using Eclipse ... How is the issue?, Ie, how do I do to solve my problem?. Because I update the plugins and the problem persists.
You need to make sure that you update to using the latest integration build of the plugin available here: http://eclipse.org/windowbuilder/download.php
Hi Clayberg, i download the latest integration build, but not resolve the problem
Gustavo, why do you add an item listener every method invocation time? private JCheckBox getChckbxConlara() { if (chckbxConlara == null) { chckbxConlara = new JCheckBox("Conlara"); } chckbxConlara.addItemListener(this); return chckbxConlara; } just move chckbxConlara.addItemListener(this); into the 'if' statement and your code will work fine.