[Bugfix] fixed bug where Locator was not complete for Parameters

This commit is contained in:
Robert von Burg 2014-02-13 22:17:02 +01:00
parent 14dd9ff73b
commit 791f12eef3
1 changed files with 1 additions and 0 deletions

View File

@ -201,6 +201,7 @@ public abstract class ParameterizedElement extends AbstractStrolchElement {
@Override
public void fillLocator(LocatorBuilder lb) {
this.parent.fillLocator(lb);
lb.append(this.id);
}