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 "DSDP/MTJ/Developer Resources/Copyright Standards"

 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== [[http://www.eclipse.org/legal/copyrightandlicensenotice.php|Default Eclipse Foundation Copyright and License Notice]] ===
+
=== [http://www.eclipse.org/legal/copyrightandlicensenotice.php Default Eclipse Foundation Copyright and License Notice] ===
 +
 
 +
=== How to document Copyright when importing code from other eclipse projects ===
 +
 
 +
Sometimes we need to use some class from JDT or PDE that are not exported. The approach we follow, is to copy the classes into our MTJ repositories to avoid improper API usage.
 +
 
 +
After we do that which copyright we should put on those files?
 +
 
 +
*Update copyright-from-year to be the oldest year of any stuff brought in
 +
 
 +
*If bringing in an entire file, take the original file's copyright header, change the copyright-to-year to be this year, and add a single line under contributors like : '''Committer name (company) - adapted from org.eclipse.someplugin/TheClassCopied'''
 +
 
 +
*If bringing in some methods only, take your OWN copyright header, change the copyright-from-year to be the oldest year of all stuff brought in, mark the methods brought in as '''<copied from org.eclipse.someplugin/SomeClass (Copyright Owner and others)> theCodeCopied </copied from ...>''', and add a single line under contributors like '''Committer name (company) - added theFunctionalityAdded from org.eclipse.someplugin/SomeClass'''
 +
 
 +
*If bringing in images or other binary files, commit with a commit comment like '''[bugNumber] copied someImage from org.eclipse.somePlugin/icons'''
 +
 
 +
 
 +
For example, see [http://dev.eclipse.org/viewsvn/index.cgi/trunk/plugins/org.eclipse.mtj.ui/src/org/eclipse/mtj/internal/ui/editor/ISortableContentOutlinePage.java?root=DSDP_MTJ&view=markup ISortableContentOutlinePage.java]
 +
 
 +
[[Category:DSDP]] [[Category:MTJ]]

Latest revision as of 10:35, 30 January 2009

Default Eclipse Foundation Copyright and License Notice

How to document Copyright when importing code from other eclipse projects

Sometimes we need to use some class from JDT or PDE that are not exported. The approach we follow, is to copy the classes into our MTJ repositories to avoid improper API usage.

After we do that which copyright we should put on those files?

  • Update copyright-from-year to be the oldest year of any stuff brought in
  • If bringing in an entire file, take the original file's copyright header, change the copyright-to-year to be this year, and add a single line under contributors like : Committer name (company) - adapted from org.eclipse.someplugin/TheClassCopied
  • If bringing in some methods only, take your OWN copyright header, change the copyright-from-year to be the oldest year of all stuff brought in, mark the methods brought in as <copied from org.eclipse.someplugin/SomeClass (Copyright Owner and others)> theCodeCopied </copied from ...>, and add a single line under contributors like Committer name (company) - added theFunctionalityAdded from org.eclipse.someplugin/SomeClass
  • If bringing in images or other binary files, commit with a commit comment like [bugNumber] copied someImage from org.eclipse.somePlugin/icons


For example, see ISortableContentOutlinePage.java

Copyright © Eclipse Foundation, Inc. All Rights Reserved.