GetSettings() public static méthode

public static GetSettings ( ) : SystemSettings
Résultat SystemSettings
Exemple #1
0
        protected string GetJavaPath(string javaPath)
        {
            if (javaPath.IsNullOrEmpty())
            {
                javaPath = ConsoleEnvironment.GetSettings().JavaPath;
            }

            return(javaPath);
        }
Exemple #2
0
        public ImageFileGenerationModel(string diagramText, string diagramName, string javaPath, string jarPath)
        {
            if (javaPath.IsNullOrEmpty())
            {
                javaPath = ConsoleEnvironment.GetSettings().JavaPath;
            }

            this.JavaPath    = javaPath;
            this.DiagramText = diagramText;
            this.DiagramName = diagramName;

            this.Invocation = new PlantUmlInvocation(jarPath);
        }