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

EATOP/guide

< EATOP
Revision as of 06:08, 18 April 2014 by Yue.ma.itemis.com (Talk | contribs) (EATOP Plug-in & Feature Conventions)

Programmer's Guide

TO BE ADDED


Committer's Guide

EATOP Plug-in & Feature Conventions

  • appropriate copyright headers based on EATOP copyright headers in Java source files, plugin.properties and plugin.xml
  • no invalid UI dependencies
  • no imported packages
  • Java package name prefix = plug-in name
  • plug-in name/provider and feature name/provider/description exported to plugin.properties/feature.properties
  • plug-in provider and feature provider = Eclipse <project name>
  • appropriate plug-in and feature versions
  • presence of required legal files in plug-ins and features (about.html, etc.) and correctly checked build.properties
  • presence of license feature
  • Java 6 as minimum Java execution environment
  • update of project settings according to latest changes in EATOP
  • appropriate EMF/EMF UI activator classes in internal package
  • elimination of compiler warnings as far as possible (e.g., missing @override annotations, etc.)

Back to the top