From be1fbe3ddb84a07efc6a69360729bca6dfbe378c Mon Sep 17 00:00:00 2001 From: 02090095 Date: Tue, 14 Nov 2023 23:07:49 +0300 Subject: [PATCH] no message --- .idea/workspace.xml | 6 +-- properties | 2 +- src/Repository/Component/Visualiser.java | 2 +- .../SapforConfigurationDBTable.java | 12 +++--- .../UI/SapforConfigurationFields.form | 37 ++++--------------- .../UI/SapforConfigurationFields.java | 6 --- .../SapforConfigurationCommandsDBTable.java | 7 +++- .../SapforTasksPackagesDBTable.java | 1 + .../ServerSapfor/ServerSapforsDBTable.java | 2 +- .../UI/ConfigurationDBTable.java | 2 +- src/TestingSystem/Group/GroupsDBTable.java | 2 +- .../TasksPackage/TasksPackageDBTable.java | 1 + src/TestingSystem/Test/TestDBTable.java | 2 +- 13 files changed, 30 insertions(+), 52 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 8fdbd6ca..3d84e517 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -48,10 +48,10 @@ - - - + + + - + @@ -44,30 +44,9 @@ - - - - - - - - - - - - - - - - - - - - - - + @@ -80,7 +59,7 @@ - + @@ -93,7 +72,7 @@ - + @@ -104,7 +83,7 @@ - + @@ -117,7 +96,7 @@ - + @@ -130,7 +109,7 @@ - + diff --git a/src/SapforTestingSystem/SapforConfiguration/UI/SapforConfigurationFields.java b/src/SapforTestingSystem/SapforConfiguration/UI/SapforConfigurationFields.java index c00d0f14..15a1f5c0 100644 --- a/src/SapforTestingSystem/SapforConfiguration/UI/SapforConfigurationFields.java +++ b/src/SapforTestingSystem/SapforConfiguration/UI/SapforConfigurationFields.java @@ -7,7 +7,6 @@ import java.awt.*; public class SapforConfigurationFields implements DialogFields { private JPanel content; public JTextField tfName; - public JSpinner sMaxtime; public JSpinner sTransformationMaxtime; public JCheckBox cbFREE_FORM; public JSlider sMAX_SHADOW_WIDTH; @@ -23,9 +22,4 @@ public class SapforConfigurationFields implements DialogFields { // TODO: place custom component creation code here tfName = new StyledTextField(); } - public SapforConfigurationFields(){ - sMaxtime.setModel(new SpinnerNumberModel(40, - 5, 3600, 1 - )); - } } diff --git a/src/SapforTestingSystem/SapforConfigurationCommand/SapforConfigurationCommandsDBTable.java b/src/SapforTestingSystem/SapforConfigurationCommand/SapforConfigurationCommandsDBTable.java index be124155..98a03d5f 100644 --- a/src/SapforTestingSystem/SapforConfigurationCommand/SapforConfigurationCommandsDBTable.java +++ b/src/SapforTestingSystem/SapforConfigurationCommand/SapforConfigurationCommandsDBTable.java @@ -20,7 +20,12 @@ public class SapforConfigurationCommandsDBTable extends DBTable { return new DataSetControlForm(this) { @Override protected void AdditionalInitColumns() { - //columns.get(0).setVisible(false); + columns.get(0).setVisible(false); columns.get(2).setRenderer(TableRenderers.RendererDate); } }; diff --git a/src/TestingSystem/Configuration/UI/ConfigurationDBTable.java b/src/TestingSystem/Configuration/UI/ConfigurationDBTable.java index ce39df16..d51d2f57 100644 --- a/src/TestingSystem/Configuration/UI/ConfigurationDBTable.java +++ b/src/TestingSystem/Configuration/UI/ConfigurationDBTable.java @@ -34,7 +34,7 @@ public class ConfigurationDBTable extends DBTable { } @Override protected void AdditionalInitColumns() { - // columns.get(0).setVisible(false); + columns.get(0).setVisible(false); columns.get(4).setRenderer(TableRenderers.RendererMultiline); columns.get(5).setRenderer(TableRenderers.RendererMultiline); columns.get(12).setRenderer(TableRenderers.RendererMultiline); diff --git a/src/TestingSystem/Group/GroupsDBTable.java b/src/TestingSystem/Group/GroupsDBTable.java index 26f11e1d..67b1f5d5 100644 --- a/src/TestingSystem/Group/GroupsDBTable.java +++ b/src/TestingSystem/Group/GroupsDBTable.java @@ -122,7 +122,7 @@ public class GroupsDBTable extends DBTable { } @Override protected void AdditionalInitColumns() { - //columns.get(0).setVisible(false); + columns.get(0).setVisible(false); } }; } diff --git a/src/TestingSystem/TasksPackage/TasksPackageDBTable.java b/src/TestingSystem/TasksPackage/TasksPackageDBTable.java index d0359db3..db0cb4e7 100644 --- a/src/TestingSystem/TasksPackage/TasksPackageDBTable.java +++ b/src/TestingSystem/TasksPackage/TasksPackageDBTable.java @@ -36,6 +36,7 @@ public class TasksPackageDBTable extends DBTable { } @Override protected void AdditionalInitColumns() { + columns.get(0).setVisible(false); columns.get(7).setRenderer(RendererDate); columns.get(8).setRenderer(RendererDate); columns.get(9).setRenderer(RendererStatusEnum); diff --git a/src/TestingSystem/Test/TestDBTable.java b/src/TestingSystem/Test/TestDBTable.java index f3dd4c8a..17758b1d 100644 --- a/src/TestingSystem/Test/TestDBTable.java +++ b/src/TestingSystem/Test/TestDBTable.java @@ -21,7 +21,7 @@ public class TestDBTable extends DBTable { return new DataSetControlForm(this) { @Override protected void AdditionalInitColumns() { - //columns.get(0).setVisible(false); + columns.get(0).setVisible(false); } @Override public boolean hasCheckBox() {