Beispiel #1
0
        public override void    Init(NGConsoleWindow editor, LogEntry log)
        {
            base.Init(editor, log);

            this.logParser = new LogConditionParser(log);

            this.commands.Add(RowsDrawer.ShortCopyCommand, this.ShortCopy);
            this.commands.Add(RowsDrawer.FullCopyCommand, this.FullCopy);
            this.commands.Add(RowsDrawer.HandleKeyboardCommand, this.HandleKeyboard);
        }
Beispiel #2
0
        public override void    Init(NGConsoleWindow editor, LogEntry log)
        {
            base.Init(editor, log);

            this.logParser = new LogConditionParser(this.log);

            this.commands.Add(RowsDrawer.ShortCopyCommand, this.ShortCopy);
            this.commands.Add(RowsDrawer.FullCopyCommand, this.FullCopy);
            this.commands.Add(RowsDrawer.CopyStackTraceCommand, this.CopyStackTrace);
            this.commands.Add(RowsDrawer.HandleKeyboardCommand, this.HandleKeyboard);
            this.commands.Add(JSONRow.CopyActualExplodedJSONCommand, this.CopyActualExplodedJSON);
            this.commands.Add(JSONRow.CopyFullExplodedJSONCommand, this.FullCopy);

            this.isParsed = false;
        }