Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Visual Editor (VE) » Use "BeanDecoderAdapter" to change the order of source code
Use "BeanDecoderAdapter" to change the order of source code [message #142083] Wed, 17 October 2007 09:13
Eclipse UserFriend
Originally posted by: caye5200.yahoo.com.cn

Hello :
BeanDecoderAdapter is the listensner to changes and updates the source
code
i want change the order of setxxx method and addxxx method ;
Ve generated code setxxx methods are front of addxxx method;
eg:
jPanel = new JPanel();
jPanel.setLayout(new GridBagLayout());
jPanel.setBounds(new Rectangle(3, 13, 355, 90));
jPanel.add(getJButton1(), gridBagConstraints21);
jPanel.add(getJButton2(), gridBagConstraints3);
jPanel.add(getJButton3(), gridBagConstraints12);
i want to the order:
jPanel = new JPanel();
jPanel.setLayout(new GridBagLayout());
jPanel.add(getJButton1(), gridBagConstraints21);
jPanel.setBounds(new Rectangle(3, 13, 355, 90));
jPanel.add(getJButton2(), gridBagConstraints3);
jPanel.add(getJButton3(), gridBagConstraints12);

The override file if not set BeanDecoderAdapter ?
if you know please help us,us needs your help
zxc
Previous Topic:[ANN] Looking for help: Visual XForms editor, OpenMRS and fighting the AIDS pandemic in Africa
Next Topic:Use "BeanDecoderAdapter" to change the order of source code
Goto Forum:
  


Current Time: Tue Apr 16 22:56:16 GMT 2024

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

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

Back to the top