Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "MoDisco/How to contribute"

(Header Syntax)
(Header Syntax)
Line 15: Line 15:
 
==Header Syntax==
 
==Header Syntax==
  
   -- /**
+
   /**
-- * *******************************************************************************
+
  * *******************************************************************************
-- * Copyright (c) <year> <company>.
+
  * Copyright (c) <year> <company>.
-- * 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
-- * which accompanies this distribution, and is available at
+
  * which accompanies this distribution, and is available at
-- * http://www.eclipse.org/legal/epl-v10.html
+
  * http://www.eclipse.org/legal/epl-v10.html
-- *  
+
  *  
-- * Contributors:
+
  * Contributors:
-- *    <contributor> (<company>) - initial implementation
+
  *    <contributor> (<company>) - initial implementation
-- * *******************************************************************************
+
  * *******************************************************************************
-- *
+
  *
-- * $Id$
+
  * $Id$
-- */
+
  */

Revision as of 12:41, 12 December 2008

< To: MoDisco

The MoDisco project is open to contributors. All external contributions are welcome.

In the comments of your code, you may mention your identity and company by mail, URL, etc. In this way you may get back some advice from interested people.

To submit your MoDisco contribution, please open a bugzilla entry in the Modeling/GMT/MoDisco component (you can use the following address: https://bugs.eclipse.org/bugs/enter_bug.cgi?product=GMT&component=MoDisco-Contribution ). Then you could attach your file(s).

Your contribution will be reviewed and integrated.

If you need more details, please use the MoDisco newsgroup.

If you wish to publish your component(s) in this project, you should provide your Code with the following header:

Header Syntax

 /**
 * *******************************************************************************
 * Copyright (c) <year> <company>.
 * 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:
 *     <contributor> (<company>) - initial implementation
 * *******************************************************************************
 *
 * $Id$
 */

Back to the top