Community
Participate
Working Groups
Build Identifier: 20100617-1415 See also bug #216296 which is incorrectly implemented: ---- ORIGINAL CODE ---- // Bug #216296 : Marker decorators should be present // in the parent hierarchy too else if (locationAttribute != null && locationAttribute.startsWith(objectLocation)) { // markerList.add(marker); } --- FIXED CODE --- // Bug #216296 : Marker decorators should be present // in the parent hierarchy too else if (locationAttribute != null && locationAttribute.startsWith(objectLocation + "::")) { markerList.add(marker); } Reproducible: Always Steps to Reproduce: 1. Create a model with two sibling objects with names "Name", "Name1". 2. Create a child object to "Name1" that contains a validation error => Both "Name" and "Name1" will be decorated with an error
Fixed with EcoreTools 2.0