how to change the generated code by IDE (netbeans)
akash shrimali
Ranch Hand
Joined: Jul 28, 2010
Posts: 45
posted
0
how to change the generated code by IDE (netbeans 6.8 )
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35257
7
posted
0
Are you asking how to edit a text file containing Java source code? I'm guessing not, but I can't really tell from the limited information you provide; you should TellTheDetails.
suppose i have made code in net beans and i have made the design using properties on the right side . i want to change the code which is automatically generated by I.D.E .
Hauke Ingmar Schmidt
Rancher
Joined: Nov 18, 2008
Posts: 371
posted
0
You can't by directly editing the code. Netbeans uses a seperate file for code generation (.form, XML). This is a one-way process, Netbeans is not capable of parsing source code for editing in it's visual editor... This is a catastrophe for interoperability (use Netbeans only for GUI editing or changes will be overwritten when you use it next time; or don't use the Netbeans GUI builder at all); but you can still influence most of the code generated. Changes will be stored in the .form-XML and show up in the generated code.
Just select the component and select the "Code" button in the properties view (the four buttons there are really tabs which show different pages in this view). If you set "Custom Creation Code" to a factory method then you can outsource the code editing to the code editor which is much more convinient.