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; }
//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(); }
void Start() => Instance = this;