skiwi
skiwi

Reputation: 69379

Netbeans: Is custom autocomplete possible?

I am using Netbeans 7.2.

Currently I run on to a small 'issue' when working with database objects, so called Beans. Whenever I type the class name on a new line, like: TableBean it (suggests to) autocomplete it to TableBean tableBean;.

For practically everything this is valid behaviour, however I would like it to suggest TableBean table; as I do not want all those beans scattered around.

Would there be anyone being able to help me out?

Upvotes: 1

Views: 1395

Answers (2)

Ben
Ben

Reputation: 2255

After completion to TableBean tableBean; press CTRL-BACKSPACE. This will remove the "Bean" from "tableBean"

Upvotes: 1

Jean Waghetti
Jean Waghetti

Reputation: 4727

In Tools -> Options menu. Then in Editor -> Code Templates tab.

Take a look in the examples there. You can do pretty much things with NetBeans code completion.

Upvotes: 3

Related Questions