X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?a=blobdiff_plain;f=src%2Fnet%2Fchiark%2Fyarrg%2FMarketUploader.java;h=37be105196b8286d3b6905317bf867a0e58c2559;hb=7b5460c64b9113c87fdd93bc0fbac3762b30f6dd;hp=c39b0f85ac3402e3cd3158ff4308aef7d9f38752;hpb=51d201e3facb0f3eef55cd3a1cdffecd37929071;p=jarrg-ian.git diff --git a/src/net/chiark/yarrg/MarketUploader.java b/src/net/chiark/yarrg/MarketUploader.java index c39b0f8..37be105 100644 --- a/src/net/chiark/yarrg/MarketUploader.java +++ b/src/net/chiark/yarrg/MarketUploader.java @@ -41,8 +41,8 @@ implements Runnable, TopLevelWindowListener, GUIInitializedListener { private Window window = null; // Genuinely global variables - public PrintStream dtxt = null; - private int uploadcounter = 0; + private PrintStream dtxt = null; + public int uploadcounter = 0; // UI objects which are enabled/disabled, cleared/set, created/destroyed, // etc., for each upload @@ -136,6 +136,7 @@ implements Runnable, TopLevelWindowListener, GUIInitializedListener { */ public static void main(String[] args) { + // This is not normally called, it seems. new MarketUploader(); } @@ -362,7 +363,7 @@ implements Runnable, TopLevelWindowListener, GUIInitializedListener { * error and error_html may be called from any thread */ - private void error(final String msg) { + public void error(final String msg) { try { new UIX() { public void body() { resultSummary.setText("failed"); @@ -375,7 +376,7 @@ implements Runnable, TopLevelWindowListener, GUIInitializedListener { } } - private void error_html(final String msg, String html) { + public void error_html(final String msg, String html) { Pattern body = Pattern.compile("(.*)", Pattern.DOTALL | Pattern.CASE_INSENSITIVE); Matcher m = body.matcher(html); @@ -394,7 +395,7 @@ implements Runnable, TopLevelWindowListener, GUIInitializedListener { error(whole_msg); } - private void progressNote(final String s_in) throws Exception { + public void progressNote(final String s_in) throws Exception { new UIA() { public void body() { String arb = null; arb = arbitrageResult.getText(); @@ -404,12 +405,12 @@ implements Runnable, TopLevelWindowListener, GUIInitializedListener { progmon.setNote(s); }}.exec("progressNote "+s_in); } - private void setProgress(final int nv) throws Exception { + public void setProgress(final int nv) throws Exception { new UIA() { public void body() { progmon.setProgress(nv); }}.exec("setProgress "+nv); } - private boolean checkCancelled() throws Exception { + public boolean checkCancelled() throws Exception { return new UIXR() { public Boolean bodyr() { boolean can = progmon.isCanceled(); if (can) resultSummary.setText("cancelled"); @@ -754,7 +755,7 @@ implements Runnable, TopLevelWindowListener, GUIInitializedListener { latch = new java.util.concurrent.CountDownLatch(1); // make the Players Online ("/who") panel appear AccessibleEditableText chat = chatArea.getAccessibleEditableText(); - chat.setTextContents("/w"); + chat.setTextContents("/who"); int c = chatArea.getAccessibleAction().getAccessibleActionCount(); for(int i=0;i