no message

This commit is contained in:
2024-10-26 15:14:23 +03:00
parent c3ce2fed96
commit ed37dd2107
38 changed files with 222 additions and 50 deletions

View File

@@ -10,6 +10,13 @@ import javax.swing.*;
public class ParallelRegionsForm extends DataSetControlForm<ParallelRegion> {
public ParallelRegionsForm(DataSet<?, ParallelRegion> dataSource_in, JPanel mountPanel_in) {
super(dataSource_in, mountPanel_in);
}
@Override
protected boolean hasCheckBox() {
return false;
}
@Override
protected void createColumns() {
AddColumns(
new ColumnInfo<ParallelRegion>("Имя") {
@Override
@@ -79,8 +86,4 @@ public class ParallelRegionsForm extends DataSetControlForm<ParallelRegion> {
}
);
}
@Override
protected boolean hasCheckBox() {
return false;
}
}