Exemple #1
0
        private void entryParse()
        {
            if (TextFile == null)
            {
                return;
            }
            DocumentParser parser = TextFile.CreateDocumentParser(DocumentParser.ParseModeEnum.EditParse);

            if (parser != null)
            {
                Controller.AppendLog("parserID " + CodeDocument.EditID.ToString());
                backGroundParser.EntryParse(parser);
                Controller.AppendLog("entry parse " + DateTime.Now.ToString());
            }
        }