отображение совпадений и различий.

This commit is contained in:
2023-11-09 19:20:51 +03:00
parent 93808bfa7b
commit 93278dc925
4 changed files with 48 additions and 28 deletions

View File

@@ -16,7 +16,7 @@ import java.util.Vector;
public class SapforTasksResults_json {
//---
public PackageSummary root = null;
public DefaultMutableTreeNode comparison_root = null;
public PackageSummary comparison_root = null;
//---
@Expose
public long StartDate = 0;
@@ -94,7 +94,7 @@ public class SapforTasksResults_json {
//--
stateSummary.count++;
matchesSummary.count++;
root.count++;
comparison_root.count++;
//--
if (configurationNode == null) {
configurationNode = new ConfigurationSummary(configuration_id, task);
@@ -113,7 +113,7 @@ public class SapforTasksResults_json {
}
//---
if (matchesSummary.count > 0) {
root.add(matchesSummary);
comparison_root.add(matchesSummary);
}
}
}