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 "EMF/Validation/New and Noteworthy/Galileo"

(Galileo M2)
 
(Milestone 2)
Line 18: Line 18:
 
The resource-tracking option defined above is just a special case of a more general validation option construct embodied by the new
 
The resource-tracking option defined above is just a special case of a more general validation option construct embodied by the new
 
<tt>[http://download.eclipse.org/modeling/emf/validation/javadoc/1.3.0/org/eclipse/emf/validation/service/IValidator.Option.html IValidator.Option]</tt> class.  This gives the Validation Framework increased flexibility in extending the validator API for customizability.  Several existing properties of the validator interfaces are retro-fitted as options to allow clients to separate the configuration of validators from other concerns.
 
<tt>[http://download.eclipse.org/modeling/emf/validation/javadoc/1.3.0/org/eclipse/emf/validation/service/IValidator.Option.html IValidator.Option]</tt> class.  This gives the Validation Framework increased flexibility in extending the validator API for customizability.  Several existing properties of the validator interfaces are retro-fitted as options to allow clients to separate the configuration of validators from other concerns.
 +
 +
====Other Enhancements====
 +
 +
A complete list of the enhancement requests resolved in this milestone can be found
 +
[https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Modeling&product=EMF&component=Validation&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&bug_severity=enhancement&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=2008-08-13&chfieldto=2008-09-24&chfield=resolution&chfieldvalue=FIXED&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0= here].

Revision as of 09:26, 2 October 2008

EMF Validation Framework New and Noteworthy items for the 1.3 (Galileo) release.

For more details about the development plan, see the EMF Galileo draft plan.

Milestone 2

This milestone was completed on Wednesday, 24 September 2008.

Problem Marker Enhancements

A contribution from Damien Thivolle greatly improves the management of workspace resource markers that track problems found by batch validation. The MarkerUtil now has updateMarkers(...) utilities of the same form as the older createMarkers(...) API, which in addition to creating markers will also perform incremental updates, removing markers for problems that were fixed. Accuracy of the results depends on a new OPTION_TRACK_RESOURCES validation option (see below) to track which resources are validated in any given operation. This is a non-default option because tracking resources incurs a new overhead, resulting in a non-trivial performance hit.

Validation Options

The resource-tracking option defined above is just a special case of a more general validation option construct embodied by the new IValidator.Option class. This gives the Validation Framework increased flexibility in extending the validator API for customizability. Several existing properties of the validator interfaces are retro-fitted as options to allow clients to separate the configuration of validators from other concerns.

Other Enhancements

A complete list of the enhancement requests resolved in this milestone can be found here.

Back to the top