no message

This commit is contained in:
2024-10-09 23:37:58 +03:00
parent eb278676cc
commit d1ffab1e70
299 changed files with 1844 additions and 1539 deletions

View File

@@ -1,5 +1,5 @@
package Visual_DVM_2021.Passes.All;
import Common.CurrentAnchestor;
import Common.Current_;
import Common.Utils.CommonUtils;
import _VisualDVM.Current;
import _VisualDVM.Visual.UI;
@@ -9,13 +9,13 @@ import _VisualDVM.GlobalData.Machine.MachineType;
import _VisualDVM.GlobalData.Tasks.RunTask.RunTask;
import _VisualDVM.GlobalData.Tasks.TaskState;
import _VisualDVM.ProjectData.Project.db_project_info;
import Visual_DVM_2021.Passes.PassCode_2021;
import Visual_DVM_2021.Passes.PassCode;
import Visual_DVM_2021.Passes.PassException;
import Visual_DVM_2021.Passes.Pass_2021;
import Visual_DVM_2021.Passes.Pass;
import java.util.Vector;
public class Run extends Pass_2021<db_project_info> {
Pass_2021 subpass = null;
public class Run extends Pass<db_project_info> {
Pass subpass = null;
Vector<RunTask> runTasks;
@Override
public String getIconPath() {
@@ -40,7 +40,7 @@ public class Run extends Pass_2021<db_project_info> {
@Override
protected boolean canStart(Object... args) {
subpass = null;
if (CurrentAnchestor.Check(Log, Current.Project, Current.Machine, Current.User, Current.Makefile, Current.RunConfiguration,
if (Current_.Check(Log, Current.Project, Current.Machine, Current.User, Current.Makefile, Current.RunConfiguration,
Current.CompilationTask)) {
//-
target = Current.getProject();
@@ -61,9 +61,9 @@ public class Run extends Pass_2021<db_project_info> {
switch (Current.getMachine().type) {
case Local:
if (CommonUtils.isWindows()) {
subpass = passes.get(PassCode_2021.WindowsLocalRun);
subpass = passes.get(PassCode.WindowsLocalRun);
} else
subpass = passes.get(PassCode_2021.LinuxLocalRun);
subpass = passes.get(PassCode.LinuxLocalRun);
break;
case Undefined:
case MVS_cluster:
@@ -74,7 +74,7 @@ public class Run extends Pass_2021<db_project_info> {
break;
*/
default:
subpass = passes.get(PassCode_2021.ServerRun);
subpass = passes.get(PassCode.ServerRun);
break;
}
int i = 1;
@@ -95,7 +95,7 @@ public class Run extends Pass_2021<db_project_info> {
task_completed = true;
if (task.hasDvmSts) {
Utils.CheckAndCleanDirectory(Current.getProject().getStatisticDirectory());
Pass_2021.passes.get(PassCode_2021.SPF_StatisticAnalyzer).Do(task);
Pass.passes.get(PassCode.SPF_StatisticAnalyzer).Do(task);
}
break;
case Finished: