if (queryParameters.length > 0) {
newUri += "&";
}
newUri += GuiFactory.strings.newParam() + "=" + GuiFactory.strings.paramValue();
ListBox httpMethodListBox = ReferenceManager.getHttpMethodListBox(newRequestString);
ParameterTree parameterTree = ReferenceManager.getParameterTree(newRequestString);
parameterTree.updateReferences(requestUriTextBox, newUri);
parameterTree.updateTree();
newRequestString = httpMethodListBox.getItemText(httpMethodListBox.getSelectedIndex()) + " " + newUri;
analyzer.setRequestString(newRequestString);
}
listParams(parentNode, parentTreeItem, newRequestString);
}