Example #1
0
 public BindingFactory(CellProcessor processor, MutableDomainAdapter adapter, TargetObjectProvider targetProvider)
 {
     this.processor = processor;
     this.adapter = adapter;
     this.targetProvider = targetProvider;
 }
Example #2
0
 public CreateBinding(CellProcessor processor, MutableDomainAdapter adapter, string memberName)
 {
     this.processor = processor;
     this.adapter = adapter;
     this.memberName = memberName;
 }
Example #3
0
 public CreateBinding(CellOperation operation, MutableDomainAdapter adapter, string memberName)
 {
     this.operation = operation;
     this.adapter = adapter;
     this.memberName = memberName;
 }
Example #4
0
 public CreateBinding(CellProcessor processor, MutableDomainAdapter adapter, string memberName)
 {
     this.processor = processor;
     this.adapter = adapter;
     this.memberName = memberName;
 }
Example #5
0
 public static void Create(this CellOperation operation, MutableDomainAdapter adapter, string className, Tree<Cell> parameterCell)
 {
     TypedValue instance = operation.Create(className, parameterCell);
     adapter.SetSystemUnderTest(instance.Value);
 }
Example #6
0
        public static void Create(this CellOperation operation, MutableDomainAdapter adapter, string className, Tree <Cell> parameterCell)
        {
            TypedValue instance = operation.Create(className, parameterCell);

            adapter.SetSystemUnderTest(instance.Value);
        }
Example #7
0
 public BindingFactory(CellProcessor processor, MutableDomainAdapter adapter, object target)
 {
     this.processor = processor;
     this.adapter = adapter;
     this.target = target;
 }
Example #8
0
 public BindingFactory(CellProcessor processor, MutableDomainAdapter adapter, TargetObjectProvider targetProvider)
 {
     this.processor      = processor;
     this.adapter        = adapter;
     this.targetProvider = targetProvider;
 }
Example #9
0
 public CreateBinding(CellOperation operation, MutableDomainAdapter adapter, string memberName)
 {
     this.operation  = operation;
     this.adapter    = adapter;
     this.memberName = memberName;
 }