JAL-629 Add accessors for argParser and bootstrapArgs
[jalview.git] / src / jalview / bin / Jalview.java
index 6c33812..af638c8 100755 (executable)
@@ -139,9 +139,9 @@ public class Jalview
 
   public static AlignFrame currentAlignFrame;
 
-  public ArgParser argparser = null;
+  private ArgParser argparser = null;
 
-  public BootstrapArgs bootstrapArgs = null;
+  private BootstrapArgs bootstrapArgs = null;
 
   private boolean QUIET = false;
 
@@ -1952,4 +1952,15 @@ public class Jalview
     }
     Console.outPrintln("[TESTOUTPUT] arg " + message);
   }
+
+  public ArgParser getArgParser()
+  {
+    return argparser;
+  }
+
+  public BootstrapArgs getBootstrapArgs()
+  {
+    return bootstrapArgs;
+  }
+
 }