Ejemplo n.º 1
0
 public Rcheckin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer)
 {
     _stdout                = stdout;
     _checkinOptions        = checkinOptions;
     _checkinOptionsFactory = new CommitSpecificCheckinOptionsFactory(_stdout);
     _writer                = writer;
 }
Ejemplo n.º 2
0
 public Shelve(CheckinOptions checkinOptions, TfsWriter writer, Globals globals)
 {
     _globals               = globals;
     _checkinOptions        = checkinOptions;
     _checkinOptionsFactory = new CheckinOptionsFactory(_globals);
     _writer = writer;
 }
Ejemplo n.º 3
0
 public Rcheckin(CheckinOptions checkinOptions, TfsWriter writer, Globals globals, AuthorsFile authors)
 {
     _checkinOptions        = checkinOptions;
     _checkinOptionsFactory = new CheckinOptionsFactory(globals);
     _writer  = writer;
     _globals = globals;
     _authors = authors;
 }
Ejemplo n.º 4
0
 public Rcheckin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer, Globals globals)
 {
     _stdout                = stdout;
     _checkinOptions        = checkinOptions;
     _checkinOptionsFactory = new CommitSpecificCheckinOptionsFactory(_stdout, globals);
     _writer                = writer;
     _globals               = globals;
 }
Ejemplo n.º 5
0
 public Shelve(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer, Globals globals)
 {
     _stdout                = stdout;
     _globals               = globals;
     _checkinOptions        = checkinOptions;
     _checkinOptionsFactory = new CheckinOptionsFactory(_stdout, _globals);
     _writer                = writer;
 }
Ejemplo n.º 6
0
 public Rcheckin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer, Globals globals, AuthorsFile authors)
 {
     _stdout                = stdout;
     _checkinOptions        = checkinOptions;
     _checkinOptionsFactory = new CheckinOptionsFactory(_stdout, globals);
     _writer                = writer;
     _globals               = globals;
     _authors               = authors;
 }
Ejemplo n.º 7
0
 public Shelve(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer)
 {
     _stdout         = stdout;
     _checkinOptions = checkinOptions;
     _writer         = writer;
 }
Ejemplo n.º 8
0
 protected CheckinBase(CheckinOptions checkinOptions, TfsWriter writer)
 {
     _checkinOptions = checkinOptions;
     _writer         = writer;
 }
Ejemplo n.º 9
0
 public Checkin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer) : base(stdout, checkinOptions, writer)
 {
 }
Ejemplo n.º 10
0
 protected CheckinBase(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer)
 {
     _stdout         = stdout;
     _checkinOptions = checkinOptions;
     _writer         = writer;
 }
Ejemplo n.º 11
0
 public CheckinTool(CheckinOptions checkinOptions, TfsWriter writer) : base(checkinOptions, writer)
 {
 }