Reputation: 38633
Is there a way to add a standard header comment in one place and it will apply to all my source files in my project? the header would contain my name, contact details, company, license etc.
Upvotes: 58
Views: 68336
Reputation: 199
this is my setting under Window > Preferencers > Java > Code Style > Code Template > Code > New Java files
:
/*
* Copyright (c) 20XX XXXXXXXXX. All rights reserved. Whatever......
*/
${filecomment}
${package_declaration}
${typecomment}
/**
*
* @author ${user}
*
*/
${type_declaration}
Upvotes: 3
Reputation: 9497
If you are looking for a tool with a good Eclipse integration (and a nice GUI), I suggest: Eclipse Copyright Generator
This adds:
I just tried it with eclipse 3.6 and it work fine.
There is an update site to install it:
https://dl.bintray.com/jmini/Eclipse-Copyright-Generator/
Upvotes: 53
Reputation: 1343
In addition to Andrew Eisenberg's reply, here's what I found out about the Eclipse copyright tool. I found this to work best from all suggested solutions.
Pluses:
Minuses:
Customization (from preferences):
You can apply the license at the file or package level
Upvotes: 7
Reputation: 3627
The project that @Jmini link (Eclipse Copyright Generator) seems dead, you can use this plugin to add the headers: JAutoDoc, it's very easy to use and have a lot of utilities for javadoc.
You need to specify a licence in project|general > Preferences > java > JAutodoc > FileHeader
and later in the project use: project > JAutodoc > Add Header
, make sure the option Replace Existing Header
is on.
The template is writing using Velocity, so you can add all the information you need as variables.
Upvotes: 4
Reputation: 28757
In addition to the answer provided by Bozho, there are the releng tools provided by eclipse, which give you some menu item commands to fix copyrights in existing files. You can install the releng tools from this update site:
The Eclipse Project Updates - http://download.eclipse.org/eclipse/updates/4.3
And there is a small bit information available on it here:
https://wiki.eclipse.org/Development_Resources/How_to_Use_Eclipse_Copyright_Tool
Upvotes: 9
Reputation: 597234
Window > Preferences > Java > Code Style > Code Templates > Comments > Files
Upvotes: 29