/* Copyright 2010,2011 Kevin Glynn (kevin.glynn@twigletsoftware.com) */ using System; using System.Collections.Generic; using Twiglet.CS2J.Translator.Utils; using System.IO; namespace Twiglet.CS2J.Translator { public class CS2JSettings { public bool DisplayTokens { get; set; } // dump parse trees to stdout public bool DumpCSharp { get; set; } public bool DumpJavaSyntax { get; set; } public bool DumpJava { get; set; } public bool DumpXmls { get; set; } public bool DumpEnums { get; set; } public string OutDir { get; set; } public string CheatDir { get; set; } public IList NetRoot { get; set; } public IList ExNetRoot { get; set; } public IList AppRoot { get; set; } public IList ExAppRoot { get; set; } public IList Exclude { get; set; } public IList MacroDefines { get; set; } public string XmlDir { get; set; } public string EnumDir { get; set; } public int Verbosity { get; set; } public string KeyFile { get; set; } public bool DebugTemplateExtraction { get; set; } public int DebugLevel { get; set; } public bool Warnings { get; set; } public bool WarningsFailedResolves { get; set; } public bool TranslatorKeepParens { get; set; } public bool TranslatorAddTimeStamp { get; set; } public bool TranslatorExceptionIsThrowable { get; set; } public CS2JSettings () { DisplayTokens = false; // dump parse trees to stdout DumpCSharp = false; DumpJavaSyntax = false; DumpJava = false; DumpXmls = false; DumpEnums = false; OutDir = Directory.GetCurrentDirectory(); CheatDir = ""; NetRoot = new List(); ExNetRoot = new List(); AppRoot = new List(); ExAppRoot = new List(); Exclude = new List(); MacroDefines = new List(); XmlDir = Path.Combine(Directory.GetCurrentDirectory(), "tmpXMLs"); EnumDir = Path.Combine(Directory.GetCurrentDirectory(), "enums"); KeyFile = null; Verbosity = 0; DebugTemplateExtraction = true; DebugLevel = 0; Warnings = true; WarningsFailedResolves = false; TranslatorKeepParens = true; TranslatorAddTimeStamp = true; TranslatorExceptionIsThrowable = false; } } }