Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Higgins/Template - File Headers"

m (Gunnar.wagenknecht.org moved page Template - File Headers to Higgins/Template - File Headers: clarify project specific page)
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{#eclipseproject:technology.higgins"Deploy Token Service", "Deployment Requirements", "Developer Team Page", "Generating anonymous psf file using PERL script", "Higgins 1.0 Third Party Dependencies", "Higgins Developer Calls", "Higgins File Headers", "Higgins Selector Selector", "Higgins Specs", "Higgins Technical References", "Higgins commiters by component", "Higgins2Ant", "IdAS Registry CVS", "Installer for Higgins Selector Selector", "Internationalization Backlog", "Project Structure and Naming", "Selector UI Harmonization Backlog", "Solution Description Template"}}
+
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}
 
__NOTOC__
 
__NOTOC__
==File Headers, Copyright ==
+
 
 
===Java files===
 
===Java files===
We follow the [http://www.eclipse.org/legal/copyrightandlicensenotice.php Eclipse conventions]. Each Java file should have a header like this with "2005-2008" replaced with the correct year(s), "Parity Communications, Inc." replace with the copyright holder, and "Paul Trevithick" replaced with original author of the file:  
+
We follow the [http://www.eclipse.org/legal/copyrightandlicensenotice.php Eclipse conventions]. Each Java file should have a header like this with "2005-2009" replaced with the correct year(s), "Azigo, Inc." replace with the copyright holder, and "Paul Trevithick" replaced with original author of the file:  
 
  /*******************************************************************************
 
  /*******************************************************************************
  * Copyright (c) 2005-2008 Parity Communications, Inc.
+
  * Copyright (c) 2005-2010 Azigo, Inc.
 
  * All rights reserved. This program and the accompanying materials
 
  * All rights reserved. This program and the accompanying materials
 
  * are made available under the terms of the Eclipse Public License v1.0
 
  * are made available under the terms of the Eclipse Public License v1.0
Line 19: Line 19:
 
  <!--
 
  <!--
 
  *******************************************************************************
 
  *******************************************************************************
  * Copyright (c) 2008 <copyright holder>
+
  * Copyright (c) 2008-2010 <copyright holder>
 
  * All rights reserved. This document and accompanying materials  
 
  * All rights reserved. This document and accompanying materials  
 
  * are made available under the terms of the Eclipse Public License v1.0
 
  * are made available under the terms of the Eclipse Public License v1.0

Latest revision as of 18:07, 12 April 2015

{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}


Java files

We follow the Eclipse conventions. Each Java file should have a header like this with "2005-2009" replaced with the correct year(s), "Azigo, Inc." replace with the copyright holder, and "Paul Trevithick" replaced with original author of the file:

/*******************************************************************************
* Copyright (c) 2005-2010 Azigo, Inc.
* 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:
* Paul Trevithick - initial API and implementation
*******************************************************************************/

OWL Files

Should carry a header like this

<!--
*******************************************************************************
* Copyright (c) 2008-2010 <copyright holder>
* All rights reserved. This document and 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:
* <someone's name> - initial vocabulary
*******************************************************************************
-->

Back to the top