Lines Matching refs:proxy
242 proxy.alertMessage = alertMessage;
243 SwingUtilities.invokeLater(proxy);
260 new Thread(proxy).start();
297 + RunProxy proxy = new RunProxy(this, RunProxy.OPEN_FILE);
298 + proxy.fileName = fileName;
299 + proxy.text = Kit.readReader(reader);
300 + new Thread(proxy).start();
446 RunProxy proxy = new RunProxy(debugGui, RunProxy.LOAD_FILE);
447 proxy.fileName = url;
448 - proxy.text = sourceInfo.source();
449 + proxy.text = textArea.getText();
450 + proxy.scope = debugGui.officeScripts.getScriptScope(url);
451 new Thread(proxy).start();