vote up 0 vote down star

I have a netbeans project that I imported into eclipse. When I use my code formatting style in eclipse, it breaks the auto generated code in Netbeans. The code is similar to the following.

    private void customActionPerformed(java.awt.event.ActionEvent evt) {// GEN-FIRST:event_customActionPerformed
// aaa
}// GEN-LAST:event_customActionPerformed

Is there any way to tell Netbeans to go back and use the correctly named methods? Currently when I am in the GUI Builder, it will not find the method that it had previously generated.

flag

63% accept rate
What do you mean "breaks". The code does not compile after you apply eclipse formatting? – Piligrim Oct 14 at 3:28
Maybe he mean that the auto-generated code doesn't work anymore as it appear as common code after bringing it back from Eclipse. – ONi Oct 14 at 3:47
The auto-generated code appears as normal code, after the formatting is applied in eclipse. – Milhous Oct 14 at 13:01

2 Answers

vote up 0 vote down

NetBeans is picky about the comments surrounding guarded blocks At issue here is the space between the // and the GEN. The GEN needs to immediately follow the comment.

Fails, space before GEN:

// GEN_FIRST:event_customActionPerformed

OK, no space before GEN:

//GEN_FIRST:event_customActionPerformed
link|flag
so the solution is? – hhafez Oct 27 at 23:27
vote up 0 vote down

To avoid altering the comments:

Open the preferences (In the Window menu, select Preferences)

In the Preferences tree, go to "Java", "Code Style", "Formatter"

If you only wish to configure a single project, click the "Configure Project Specific Settings" link (looks like a blue URL link)

You may wish to create a "new" profile, copying from the default (or whatever is used for your project)

When you are editing the profile, go to the "Comments" tab, and deselect "Enable Line Comment Formatting". That will prevent spaces from appearing in single line comments.

link|flag
I will give that a try. – Milhous Nov 10 at 23:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.