コード例 #1
0
ファイル: CellOperation.cs プロジェクト: narkedboy/fitsharp
 public static void Create(this CellOperation operation, MutableDomainAdapter adapter, string className, Tree<Cell> parameterCell)
 {
     TypedValue instance = operation.Create(className, parameterCell);
     adapter.SetSystemUnderTest(instance.Value);
 }
コード例 #2
0
ファイル: Binding.cs プロジェクト: skolima/fitsharp
 public void Do(Tree<Cell> cell)
 {
     //operation.Create(adapter, memberName, new CellTree(cell));
     var instance = processor.Create(memberName, new CellTree(cell));
     adapter.SetSystemUnderTest(instance.Value);
 }
コード例 #3
0
ファイル: CellOperation.cs プロジェクト: x97mdr/fitsharp
        public static void Create(this CellOperation operation, MutableDomainAdapter adapter, string className, Tree <Cell> parameterCell)
        {
            TypedValue instance = operation.Create(className, parameterCell);

            adapter.SetSystemUnderTest(instance.Value);
        }