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 @@
-
-
-
+
+
+
diff --git a/properties b/properties
index d9a7bdd4..eefc1a58 100644
--- a/properties
+++ b/properties
@@ -25,7 +25,7 @@
"InstructionPath": "",
"PerformanceAnalyzerPath": "",
"ComponentsBackUpsCount": 10,
- "TestingKernels": 14,
+ "TestingKernels": 64,
"AutoCheckTesting": false,
"CheckTestingIntervalSeconds": 15,
"EmailOnTestingProgress": true
diff --git a/src/Repository/Component/Visualiser.java b/src/Repository/Component/Visualiser.java
index eb13f009..2ac9acf7 100644
--- a/src/Repository/Component/Visualiser.java
+++ b/src/Repository/Component/Visualiser.java
@@ -62,7 +62,7 @@ public class Visualiser extends Component {
//http://www.seostella.com/ru/article/2012/02/05/formatirovanie-daty-v-java.html
@Override
public void GetVersionInfo() {
- version = 1026;
+ version = 1027;
String pattern = "MMM dd yyyy HH:mm:ss";
DateFormat df = new SimpleDateFormat(pattern, Locale.ENGLISH);
date_text = df.format(getClassBuildTime());
diff --git a/src/SapforTestingSystem/SapforConfiguration/SapforConfigurationDBTable.java b/src/SapforTestingSystem/SapforConfiguration/SapforConfigurationDBTable.java
index 0600f8f4..b4eb25c4 100644
--- a/src/SapforTestingSystem/SapforConfiguration/SapforConfigurationDBTable.java
+++ b/src/SapforTestingSystem/SapforConfiguration/SapforConfigurationDBTable.java
@@ -32,6 +32,10 @@ public class SapforConfigurationDBTable extends DBTable
-
+
@@ -29,7 +29,7 @@
-
+
@@ -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() {