| Summary: | WindowBuilder can't build the GUI | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Gustavo Echenique <gustavo.echenique> | ||||||||
| Component: | WindowBuilder | Assignee: | Alexander Mitin <Alexander.Mitin> | ||||||||
| Status: | CLOSED FIXED | QA Contact: | |||||||||
| Severity: | normal | ||||||||||
| Priority: | P3 | CC: | adriana.eremita, alirezanekubakht, allen.daguay, clayberg, gersonrs99, pradeepmundan | ||||||||
| Version: | unspecified | ||||||||||
| Target Milestone: | --- | ||||||||||
| Hardware: | PC | ||||||||||
| OS: | Windows Server 2008 | ||||||||||
| Whiteboard: | |||||||||||
| Attachments: |
|
||||||||||
|
Description
Gustavo Echenique
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.
|