CodeScrollItem.SetCompilable C# (CSharp) Метод

SetCompilable() публичный Метод

public SetCompilable ( ) : void
Результат void
    public void SetCompilable()
    {
        Process compile_process = Shell.shell_no_start("javac", "-classpath \"" + JuneConfig.june_files_path + "\" "+JuneConfig.java_files_path+"/"+file_name);
        compile_process.Start();

        var output = compile_process.StandardOutput.ReadToEnd();
        var error = compile_process.StandardError.ReadToEnd();

        //		Popup.mainPopup.popup(""  + output + " " + error);

        if(!error.Equals(""))
            compilable = false;
        else
            compilable = true;
    }