no message

This commit is contained in:
2023-11-06 20:12:05 +03:00
parent 1f5038724b
commit 51f67594c2
6 changed files with 32 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
package SapforTestingSystem.SapforTasksPackage.UI;
public class GroupSummary extends TreeSummary {
@Override
public void refreshText() {
}
@Override
public String getImageKey() {
return "Group";
}
public GroupSummary(String group_name) {
text = group_name;
}
}