Skip to content

Commit

Permalink
S2U-11 5.1.1.7 Tests & Quizzes: Global variables in calculated questi…
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusmmp authored Feb 13, 2024
1 parent d97dde0 commit d32415c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public interface ItemTextIfc

public boolean getHasAttachment();

public boolean isAddedButNotExtracted();
public Boolean isAddedButNotExtracted();

public void setAddedButNotExtracted(boolean addedButNotExtracted);
public void setAddedButNotExtracted(Boolean addedButNotExtracted);
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class ItemText

private Set<ItemTextAttachmentIfc> itemTextAttachmentSet;
private Integer requiredOptionsCount;
private boolean addedButNotExtracted = false;
private Boolean addedButNotExtracted = false;

public ItemText() {}

Expand Down Expand Up @@ -305,11 +305,11 @@ public String toString(){
return getText();
}

public boolean isAddedButNotExtracted() {
public Boolean isAddedButNotExtracted() {
return addedButNotExtracted;
}

public void setAddedButNotExtracted(boolean addedButNotExtracted) {
public void setAddedButNotExtracted(Boolean addedButNotExtracted) {
this.addedButNotExtracted = addedButNotExtracted;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class PublishedItemText

private Set<ItemTextAttachmentIfc> itemTextAttachmentSet;
private Integer requiredOptionsCount;
private boolean addedButNotExtracted = false;
private Boolean addedButNotExtracted = false;

public PublishedItemText() {}

Expand Down Expand Up @@ -307,11 +307,11 @@ public String getEmiCorrectOptionLabels() {
return correctOptionLabels;
}

public boolean isAddedButNotExtracted() {
public Boolean isAddedButNotExtracted() {
return addedButNotExtracted;
}

public void setAddedButNotExtracted(boolean addedButNotExtracted) {
public void setAddedButNotExtracted(Boolean addedButNotExtracted) {
this.addedButNotExtracted = addedButNotExtracted;
}

Expand Down

0 comments on commit d32415c

Please sign in to comment.