{
// send message to stderr if an output file to stdout is expected
if (!forceStdout && Jalview.getInstance() != null
- && Jalview.getInstance().bootstrapArgs != null
- && Jalview.getInstance().bootstrapArgs.outputToStdout())
+ && Jalview.getInstance().getBootstrapArgs() != null
+ && Jalview.getInstance().getBootstrapArgs().outputToStdout())
{
return System.err;
}
public static AlignFrame currentAlignFrame;
- public ArgParser argparser = null;
+ private ArgParser argparser = null;
- public BootstrapArgs bootstrapArgs = null;
+ private BootstrapArgs bootstrapArgs = null;
private boolean QUIET = false;
}
Console.outPrintln("[TESTOUTPUT] arg " + message);
}
+
+ public ArgParser getArgParser()
+ {
+ return argparser;
+ }
+
+ public BootstrapArgs getBootstrapArgs()
+ {
+ return bootstrapArgs;
+ }
+
}