v++
улучшение удаления баг репортов
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
package GlobalData.FileObject;
|
||||
import Common.Database.DataSet;
|
||||
import Common.UI.DataSetControlForm;
|
||||
import GlobalData.Machine.Machine;
|
||||
|
||||
import static Common.UI.Tables.TableRenderers.*;
|
||||
public class FileObjectsDataSet extends DataSet<String, FileObject> {
|
||||
public class FileObjectsDataSet extends DataSet<String, DirInfo> {
|
||||
public FileObjectsDataSet() {
|
||||
super(String.class, FileObject.class);
|
||||
super(String.class, DirInfo.class);
|
||||
}
|
||||
@Override
|
||||
protected DataSetControlForm createUI() {
|
||||
@@ -23,7 +22,7 @@ public class FileObjectsDataSet extends DataSet<String, FileObject> {
|
||||
"дата изменения"};
|
||||
}
|
||||
@Override
|
||||
public Object getFieldAt(FileObject object, int columnIndex) {
|
||||
public Object getFieldAt(DirInfo object, int columnIndex) {
|
||||
switch (columnIndex) {
|
||||
case 1:
|
||||
return object.getDate();
|
||||
Reference in New Issue
Block a user