private void  InitBlock(bool withTimeout, System.Collections.BitArray success, int num, TestTimeLimitedCollector enclosingInstance)
			{
				this.withTimeout = withTimeout;
				this.success = success;
				this.num = num;
				this.enclosingInstance = enclosingInstance;
			}
			private void  InitBlock(TestTimeLimitedCollector enclosingInstance)
			{
				this.enclosingInstance = enclosingInstance;
			}
			public AnonymousClassThread(bool withTimeout, System.Collections.BitArray success, int num, TestTimeLimitedCollector enclosingInstance)
			{
				InitBlock(withTimeout, success, num, enclosingInstance);
			}
			public MyHitCollector(TestTimeLimitedCollector enclosingInstance)
			{
				InitBlock(enclosingInstance);
			}
Exemplo n.º 5
0
 private void  InitBlock(bool withTimeout, System.Collections.BitArray success, int num, TestTimeLimitedCollector enclosingInstance)
 {
     this.withTimeout       = withTimeout;
     this.success           = success;
     this.num               = num;
     this.enclosingInstance = enclosingInstance;
 }
Exemplo n.º 6
0
 public AnonymousClassThread(bool withTimeout, System.Collections.BitArray success, int num, TestTimeLimitedCollector enclosingInstance)
 {
     InitBlock(withTimeout, success, num, enclosingInstance);
 }
Exemplo n.º 7
0
 private void  InitBlock(TestTimeLimitedCollector enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Exemplo n.º 8
0
 public MyHitCollector(TestTimeLimitedCollector enclosingInstance)
 {
     InitBlock(enclosingInstance);
 }