удаление объектов в таблицах по клавише DELETE

This commit is contained in:
2024-10-16 21:58:46 +03:00
parent c902dd0b91
commit 592ef14909
26 changed files with 162 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
package _VisualDVM.GlobalData.DVMParameter;
import Common.Database.Tables.iDBTable;
import Common.Passes.PassCode_;
import Common.Utils.Utils_;
import Common.Visual.DataSetControlForm;
import Common.Visual.Menus.DataMenuBar;
@@ -104,4 +105,8 @@ public class DVMParameterDBTable extends iDBTable<DVMParameter> {
PassCode.EditDVMParameter,
PassCode.DeleteDVMParameter);
}
@Override
public PassCode_ getDeletePassCode() {
return PassCode.DeleteDVMParameter;
}
}