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 "VIATRA/Releases/Query/MigrateTo0.8"

(Created page with "== Differences in EMF-IncQuery 0.8 == The ''org.eclipse.incquery.runtime'' project does not depend (and re-export) on the ''org.eclipse.patternlanguage.emf'' project. This mi...")
 
Line 1: Line 1:
 
== Differences in EMF-IncQuery 0.8 ==
 
== Differences in EMF-IncQuery 0.8 ==
 +
 +
'''Important''': Before first using EMF-IncQuery 0.8, the older incquery projects needs to be updated. This is achieved by selecting the "Update/Add EMF-IncQuery Nature" menu item from the "Configuration" sub-menu of the project. Until the first build is finished after the update, some exceptions might be thrown.
  
 
The ''org.eclipse.incquery.runtime'' project does not depend (and re-export) on the ''org.eclipse.patternlanguage.emf'' project. This might required some changes in existing code.
 
The ''org.eclipse.incquery.runtime'' project does not depend (and re-export) on the ''org.eclipse.patternlanguage.emf'' project. This might required some changes in existing code.

Revision as of 11:25, 10 February 2014

Differences in EMF-IncQuery 0.8

Important: Before first using EMF-IncQuery 0.8, the older incquery projects needs to be updated. This is achieved by selecting the "Update/Add EMF-IncQuery Nature" menu item from the "Configuration" sub-menu of the project. Until the first build is finished after the update, some exceptions might be thrown.

The org.eclipse.incquery.runtime project does not depend (and re-export) on the org.eclipse.patternlanguage.emf project. This might required some changes in existing code.

Generic API use

  • The GenericQuerySpecification, GenericPatternMatcher and GenericPatternMatch classes have been moved to the org.eclipse.incquery.patternlanguage.emf project, to the org.eclipse.incquery.patternlanguage.emf.specification package. In case these classes are required, add the org.eclipse.incquery.patternlanguage project as additional dependency.
  • To initialize query specifications from selected patterns, use the SpecificationBuilder class.

QuerySpecificationRegistry

The registry does not know anything about patterns; related methods, most specifically the #getOrCreateQuerySpecification(Pattern) method. If it is required, use the SpecificationBuilder#getOrCreateSpecification(Pattern) method instead.

Back to the top