private static void addParamsToListBox(Vector allResources, boolean firstCall) {
// do this the first time only
if (firstCall) {
if (Analyzer.application != null) {
ApplicationNode application = Analyzer.application;
if (!application.getAllParams().isEmpty()) {
examineParams(application.getAllParams());
return;
}
// if we still found nothing, check the referenced methods
if (!application.getAllMethods().isEmpty()) {
Vector allMethods = application.getAllMethods();
Iterator allMethodsIterator = allMethods.iterator();
while (allMethodsIterator.hasNext()) {
MethodNode method = (MethodNode) allMethodsIterator.next();
if (method.getRequest() != null) {
RequestNode request = method.getRequest();