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()){