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;
|
||||
|
||||
Reference in New Issue
Block a user