Skip to content

Commit

Permalink
changed decision tree - added fk and changed description #42
Browse files Browse the repository at this point in the history
  • Loading branch information
jannik.lange committed Sep 11, 2024
1 parent 9ac31db commit bdcf060
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class DiscriminationBranch {

private final String roleQuestion = "Welche Rolle haben Sie?";
private final String kindOfDiscrimination =
"Aus welchem Grund werden Sie/fühlen Sie sich diskriminiert?";
"Aus welchem Grund fühlen Sie sich diskriminiert?";
private final String kindOfSexualDiscrimination =
"Mann-Frau Diskriminierung oder LGBTIQ* Diskriminierung?";

Expand All @@ -21,6 +21,7 @@ public class DiscriminationBranch {
roleQuestion,
List.of(
Competence.EMPLOYEE.toCompetenceView(),
Competence.EXECUTIVE.toCompetenceView(),
Competence.JUNIOR.toCompetenceView()));

private final DecisionPoint n2 =
Expand All @@ -41,6 +42,15 @@ public class DiscriminationBranch {
Competence.SEXUAL_IDENTITY.toCompetenceView()));

private final DecisionPoint n4 =
new DecisionPoint(
Competence.EXECUTIVE,
kindOfDiscrimination,
List.of(
Competence.ETHNIC_RACIAL.toCompetenceView(),
Competence.DISABLED.toCompetenceView(),
Competence.SEXUAL_IDENTITY.toCompetenceView()));

private final DecisionPoint n5 =
new DecisionPoint(
Competence.SEXUAL_IDENTITY,
kindOfSexualDiscrimination,
Expand Down

0 comments on commit bdcf060

Please sign in to comment.