ProblemGroup

@Immutable
abstract class ProblemGroup(source)

Represents a group of problems.

Groups are organized in hierarchy where the parent group should represent the more broad problem group.

Two problem groups are considered equal if their getName and their parents' are equal.

Since

8.8

See also

Functions

Link copied to clipboard
open fun create(name: String, displayName: String): ProblemGroup
Creates a new root problem i.e.
open fun create(name: String, displayName: String, @Nullable parent: ProblemGroup): ProblemGroup
Creates a new problem group.
Link copied to clipboard
abstract fun getDisplayName(): String
Returns a human-readable label describing the group.
Link copied to clipboard
abstract fun getName(): String
The name of the problem group.
Link copied to clipboard
@Nullable
abstract fun getParent(): ProblemGroup
Returns the parent group or null for root groups.