* @return the created FilteredContentProviderResultItem
*/
public static FilteredContentProviderResultItem createFilteredContentProviderResultItem(EObject eObject, HashMap<String, HashMap<String, Integer>> hits){
TechnicalProperty modelElement = (TechnicalProperty) eObject;
String id = modelElement.getIdentifier();
String label = LabelProvider.getLabel(modelElement);
Image image = LabelProvider.getImage(modelElement);
HashMap<String, String> content = new HashMap<String, String>();
for (EAttribute attribute : modelElement.eClass().getEAllAttributes()) {
String attributeName = attribute.getName();
String attributeStringValue = "";
if (eObject.eGet(attribute) == null ){
attributeStringValue = "";
} else if (attribute.isMany()){