Exemplo n.º 1
0
 public static void GenerateRegularGrammarElementForJsonLayout(XmlElement formatRootElement, JsonParams jsonParams, ImportLog importLog)
 {
     importLog.Clear();
     ConfigGeneration.GenerateJsonLayoutConfig(formatRootElement, jsonParams, importLog);
 }
Exemplo n.º 2
0
        // todo: detect encoding, detect if search optimization is possible, jitter, rotation, full date detection (header/footer + rotation)

        public static void GenerateRegularGrammarElementForSimpleLayout(XmlElement formatRootElement, string layoutString, ImportLog importLog)
        {
            importLog.Clear();
            ConfigGeneration.GenerateSimpleLayoutConfig(formatRootElement, layoutString, importLog);
        }
Exemplo n.º 3
0
 public static void GenerateRegularGrammarElementForCSVLayout(XmlElement formatRootElement, CsvParams csvParams, ImportLog importLog)
 {
     importLog.Clear();
     ConfigGeneration.GenerateCsvLayoutConfig(formatRootElement, csvParams, importLog);
 }