Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 220872 Details for
Bug 368543
Odd Display of WindowBuilder in Eclipse 3.8/4.2 on Linux
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
Bug on uses of WindowBuilder with eclipse Juno
HelloVE.java (text/plain), 864 bytes, created by
chokri chaouch
on 2012-09-09 09:37:11 EDT
(
hide
)
Description:
Bug on uses of WindowBuilder with eclipse Juno
Filename:
MIME Type:
Creator:
chokri chaouch
Created:
2012-09-09 09:37:11 EDT
Size:
864 bytes
patch
obsolete
>import java.awt.BorderLayout; >import java.awt.EventQueue; > >import javax.swing.JFrame; >import javax.swing.JPanel; >import javax.swing.border.EmptyBorder; > > >public class HelloVE extends JFrame { > > private JPanel contentPane; > > /** > * Launch the application. > */ > public static void main(String[] args) { > EventQueue.invokeLater(new Runnable() { > public void run() { > try { > HelloVE frame = new HelloVE(); > frame.setVisible(true); > } catch (Exception e) { > e.printStackTrace(); > } > } > }); > } > > /** > * Create the frame. > */ > public HelloVE() { > 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); > } > >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
chchokri
:
review?
Actions:
View
Attachments on
bug 368543
:
209450
|
217087
|
218251
| 220872