Example #1
0
 public Dumper(PrintStream output)
 {
     _operations      = new List <ArchiveOperation>();
     _progressPrinter = new ArchiveProgressPrinter(output);
 }
Example #2
0
 public Loader(PrintStream output)
 {
     _progressPrinter = new ArchiveProgressPrinter(output);
 }
Example #3
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @VisibleForTesting Dumper()
        internal Dumper()
        {
            _operations      = new List <ArchiveOperation>();
            _progressPrinter = new ArchiveProgressPrinter(null);
        }
Example #4
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @VisibleForTesting Loader()
        internal Loader()
        {
            _progressPrinter = new ArchiveProgressPrinter(null);
        }