no message

This commit is contained in:
2024-10-16 19:52:16 +03:00
parent 9dc4922b89
commit 307b83f8c9
3 changed files with 12 additions and 24 deletions

View File

@@ -18,7 +18,12 @@ public class SapforProfilesDBTable extends iDBTable<SapforProfile> {
}
@Override
protected DataSetControlForm createUI() {
return new DataSetControlForm(this);
return new DataSetControlForm(this){
@Override
public boolean hasCheckBox() {
return true;
}
};
}
@Override
public String[] getUIColumnNames() {
@@ -30,9 +35,9 @@ public class SapforProfilesDBTable extends iDBTable<SapforProfile> {
@Override
public Object getFieldAt(SapforProfile object, int columnIndex) {
switch (columnIndex) {
case 1:
return object.description;
case 2:
return object.description;
case 3:
return new Date(object.creationDate);
default:
return null;

View File

@@ -1,7 +1,7 @@
package _VisualDVM.Passes.All;
import Common.Passes.DeleteObjectPass;
import Common.Passes.DeleteObjectsPass;
import _VisualDVM.GlobalData.SapforProfile.SapforProfile;
public class DeleteProfile extends DeleteObjectPass<SapforProfile> {
public class DeleteProfile extends DeleteObjectsPass<SapforProfile> {
public DeleteProfile() {
super(SapforProfile.class);
}