no message
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user