private void drawRawResponse(String responseString, Type contentType) {
if (JsMethods.stringToDownloadSupported()) {
String url = JsMethods.stringToUrl(responseString, contentType.getContentType());
view.getSelectedTab().getDownloadLink().showDownloadIcon(url, contentType);
}
rawResponseOutput = new RawResponse(view, queryTab, responseString);
addMember(rawResponseOutput);
final String mode;
if (contentType.getCmMode() != null) {
mode = contentType.getCmMode();