Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[equinox-dev] Copyright comments


I have noticed a few Java classes added lately with no copyright comments. This is just a friendly reminder to ensure you add copyright comments in new Java files. A common culprit is that you might not have the "generate comments" checkbox selected in the New Java Class wizard. Also, since we've just rolled over into a new year, make sure your "New Java files" template has the ${year} variable to ensure the correct year is inserted:

/*******************************************************************************
 * Copyright (c) ${year} <your name or company> and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     <your name or company> - initial API and implementation
 *******************************************************************************/




Back to the top