Commit b3e67d44 authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ fix for component instance binding labels

parent 810c8f4f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -69,9 +69,10 @@ public class DataUseLabelProvider {
			if (u instanceof TestDescriptionReference) {
				if (type.equals("bindings")) {
					for (ComponentInstanceBinding b : ((TestDescriptionReference)u).getComponentInstanceBinding()) {
						// TODO: grammar doesn't actually support this meta-class -> part of the removed rules -> rules shall be re-added
						// DONE: grammar doesn't actually support this meta-class -> part of the removed rules -> rules re-added, context resolution added
						s+=separator+serializer.serialize(b);
					}
					s = s.replaceAll("\s+", " ").replaceAll("\t+", " ");
					if (s.length()>0) {
						s=s.substring(separator.length());
					}