chiark / gitweb /
style: change visibility of some members of MarketUploader
[jarrg-ian.git] / src / net / chiark / yarrg / MarketUploader.java
index c39b0f85ac3402e3cd3158ff4308aef7d9f38752..2316505eec9fb0b09d9f3124f23fd5cfdf2e173f 100644 (file)
@@ -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
@@ -362,7 +362,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 +375,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("<body>(.*)</body>",
                                   Pattern.DOTALL | Pattern.CASE_INSENSITIVE);
     Matcher m = body.matcher(html);
@@ -394,7 +394,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 +404,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<Boolean>() { public Boolean bodyr() {
       boolean can = progmon.isCanceled();
       if (can) resultSummary.setText("cancelled");