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 "Refactor"

Line 16: Line 16:
  
 
The tool environment mainly consists of two kinds of modules: For calculating model metrics, detecting smells, and executing refactorings there is an <strong>application module</strong> each. Similarly there are three <strong>specification modules</strong> for generating metrics, smell, and refactoring plugins containing Java code that can be used by the corresponding application module.
 
The tool environment mainly consists of two kinds of modules: For calculating model metrics, detecting smells, and executing refactorings there is an <strong>application module</strong> each. Similarly there are three <strong>specification modules</strong> for generating metrics, smell, and refactoring plugins containing Java code that can be used by the corresponding application module.
 
  
 
== Example DSL ==
 
== Example DSL ==

Revision as of 06:10, 23 April 2014

EMF Refactor

EMF Refactor is an Eclipse open source tool environment conveniently supporting a structured model quality assurance process. In particular, EMF Refactor supports metrics reporting, smell detection, and refactoring for models being based on the Eclipse Modeling Framework, a widely used open source technology in model-based software development.


The following major functionalities are provided:

  • User-friendly support for project-specific configurations of model metrics, smells, and refactorings.
  • Calculation of model metrics, detection of model smells, and application of model refactorings.
  • Generation of model metrics and smell detection reports.
  • Suggestion of suitable refactorings in case of specific smell occurrences.
  • Provision of suitable information in cases where new model smells come in by applying a certain refactoring.
  • Support for the implementation of new model metrics, smells, and refactorings.


The tool environment mainly consists of two kinds of modules: For calculating model metrics, detecting smells, and executing refactorings there is an application module each. Similarly there are three specification modules for generating metrics, smell, and refactoring plugins containing Java code that can be used by the corresponding application module.

Example DSL

How to calculate model metrics

How to detect model smells

How to apply model refactorings

Back to the top