Extra spaces is a problem in every code. Personally I always delete trailing spaces in my code. NetBeans has possibility to delete trailing spaces:
Source->Remove Trailing Spaces
Note: In my point of view for this feature need to add possibility to run it when user saves file as in AnyEdit plugin . . . → Read More: Removing trailing spaces in NetBeans
By default stores it’s settings in a directory called .netbeans under the user’s home directory.
But what if you need to use other settings for other projects (for example home projects)?
It is simple, need to use other settings directory.
There are 2 ways. You can edit netbeans.conf file or you can specify what settings directory should use NetBeans when it starts. I am going to show both of them. Continue reading Using different settings directories for different projects in NetBeans
Company’s code convention dictates own way in writing code. You need to put licence at the top of the file, write detailed descriptions of the class, set who is an author, set version of class or interface, comment your methods and so on.
At this time if not all but most of the IDE allows to automate this process.
And now I am going examine how we can do it in .
But in this post I am going to show only how to change @author tag.
Developers who use NetBeans in daily job saw that after creating Java class or interface @author tag sets value automatically. But this value is simple user.name variable. Continue reading Using file templates for customizing author in generated files in NetBeans 6.7.*
Recent Comments