diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 7c579fa5..7c709eeb 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -7,20 +7,24 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
@@ -42,8 +46,8 @@
-
+
diff --git a/properties b/properties
index eb951422..2ceb1734 100644
--- a/properties
+++ b/properties
@@ -37,7 +37,7 @@
"CheckTestingIntervalSeconds": 10,
"EmailOnTestingProgress": false,
"eraseTestingWorkspaces": true,
- "lastMachineId": -1,
+ "lastMachineId": 13,
"lastUserId": -1,
"lastCompilerId": -1
}
\ No newline at end of file
diff --git a/src/_VisualDVM/GlobalData/Compiler/UI/CompilersForm.java b/src/_VisualDVM/GlobalData/Compiler/UI/CompilersForm.java
index 470f6eec..79e01266 100644
--- a/src/_VisualDVM/GlobalData/Compiler/UI/CompilersForm.java
+++ b/src/_VisualDVM/GlobalData/Compiler/UI/CompilersForm.java
@@ -48,11 +48,13 @@ public class CompilersForm extends DataSetControlForm {
protected void ShowCurrentObject() throws Exception {
super.ShowCurrentObject();
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
+ Global.mainModule.getUI().mainMenuBar.ShowCompiler(dataSource.getUI().getCurrent());
}
@Override
protected void ShowNoCurrentObject() throws Exception {
super.ShowNoCurrentObject();
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
+ Global.mainModule.getUI().mainMenuBar.ShowNoCompiler();
}
@Override
public DataMenuBar createMenuBar() {
diff --git a/src/_VisualDVM/GlobalData/Machine/UI/MachinesForm.java b/src/_VisualDVM/GlobalData/Machine/UI/MachinesForm.java
index f3e6495e..77295409 100644
--- a/src/_VisualDVM/GlobalData/Machine/UI/MachinesForm.java
+++ b/src/_VisualDVM/GlobalData/Machine/UI/MachinesForm.java
@@ -33,13 +33,15 @@ public class MachinesForm extends DataSetControlForm {
protected void ShowCurrentObject() throws Exception {
super.ShowCurrentObject();
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
- Global.mainModule.getUI().getCredentialsMenuBar().ShowMachine();
+ Global.mainModule.getUI().mainMenuBar.ShowMachine(dataSource.getUI().getCurrent());
+ // Global.mainModule.getUI().getCredentialsMenuBar().ShowMachine();
}
@Override
protected void ShowNoCurrentObject() throws Exception {
super.ShowNoCurrentObject();
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
- Global.mainModule.getUI().getCredentialsMenuBar().ShowNoMachine();
+ Global.mainModule.getUI().mainMenuBar.ShowNoMachine();
+ // Global.mainModule.getUI().getCredentialsMenuBar().ShowNoMachine();
}
@Override
public PassCode_ getDeletePassCode() {
diff --git a/src/_VisualDVM/GlobalData/User/UI/UsersForm.java b/src/_VisualDVM/GlobalData/User/UI/UsersForm.java
index fde0f9fa..87ef5740 100644
--- a/src/_VisualDVM/GlobalData/User/UI/UsersForm.java
+++ b/src/_VisualDVM/GlobalData/User/UI/UsersForm.java
@@ -41,12 +41,14 @@ public class UsersForm extends DataSetControlForm {
@Override
protected void ShowCurrentObject() throws Exception {
super.ShowCurrentObject();
- Global.mainModule.getUI().getCredentialsMenuBar().ShowUser();
+ Global.mainModule.getUI().mainMenuBar.ShowUser(dataSource.getUI().getCurrent());
+ //Global.mainModule.getUI().getCredentialsMenuBar().ShowUser();
}
@Override
protected void ShowNoCurrentObject() throws Exception {
super.ShowNoCurrentObject();
- Global.mainModule.getUI().getCredentialsMenuBar().ShowNoUser();
+ Global.mainModule.getUI().mainMenuBar.ShowNoUser();
+ // Global.mainModule.getUI().getCredentialsMenuBar().ShowNoUser();
}
@Override
public PassCode_ getDeletePassCode() {
diff --git a/src/_VisualDVM/Passes/All/UpdateProperty.java b/src/_VisualDVM/Passes/All/UpdateProperty.java
index 6bd89ef7..5119cea3 100644
--- a/src/_VisualDVM/Passes/All/UpdateProperty.java
+++ b/src/_VisualDVM/Passes/All/UpdateProperty.java
@@ -28,12 +28,6 @@ public class UpdateProperty extends Pass