no message

This commit is contained in:
2024-10-20 21:59:39 +03:00
parent 99643aa755
commit fda2940a79
95 changed files with 872 additions and 817 deletions

View File

@@ -18,6 +18,16 @@ public class DVMParametersForm extends DataSetControlForm<DVMParameter> {
};
}
@Override
public Object getFieldAt(DVMParameter object, int columnIndex) {
switch (columnIndex) {
case 1:
return object.name;
case 2:
return object.value;
}
return null;
}
@Override
protected void AdditionalInitColumns() {
columns.get(0).setVisible(false);
}