return obj.toString();
}
public Image getImage(Object obj) {
String imageKey = ISharedImages.IMG_OBJ_ELEMENT;
if (obj instanceof JbprocessMapping){
JbprocessMapping mapping = (JbprocessMapping)obj;
if (mapping.getChildren().size() > 0)
imageKey = ISharedImages.IMG_OBJ_FOLDER;
}
return PlatformUI.getWorkbench().getSharedImages().getImage(imageKey);
}