コード例 #1
0
 public void StartAnalyze()
 {
     Cleaning();
     Input.text = Colorator.RemoveColors(Input);
     Analysis(Input.text);
     Debug.Log("F");
 }
 public ExcelActionsCommandGenerator(IClipBoardCopier allCopier, IClipBoardCopier selectedCopier, IItemsSourceItems itemsSourceInserts, Colorator colorator)
 {
     this.allCopier          = allCopier;
     this.selectedCopier     = selectedCopier;
     this.itemsSourceInserts = itemsSourceInserts;
     this.colorator          = colorator;
 }
コード例 #3
0
        //private static IKeyBindingInputs keyBindingsInputCopies;
        //private static IKeyBindingInputs keyBindingsInputPaste;
        //private static IKeyBindingWorker keyBindingWorker;



        static ExcelActions()
        {
            allCopier                    = new AllCopyItems();
            selectedCopier               = new SelectedCopyItems();
            colorator                    = new Colorator();
            contextMenuBuilder           = new ContextMenuBuilder();
            builderObjects               = new BuilderObjects();
            itemsSourceInserts           = new ItemsSourceIntems(builderObjects);
            excelActionsCommandGenerator = new ExcelActionsCommandGenerator(allCopier, selectedCopier, itemsSourceInserts, colorator);
            //keyBindingsInputCopies       = new KeyBindingInputsCopies();
            //keyBindingsInputPaste        = new KeyBindingInputsPaste();
            //keyBindingWorker             = new KeyBindingWorker();
        }
コード例 #4
0
 void Start() => Instance = this;