diff --git a/src/main/java/dao/MarkingProperties.java b/src/main/java/dao/MarkingProperties.java index c0f5fa6..73d810e 100644 --- a/src/main/java/dao/MarkingProperties.java +++ b/src/main/java/dao/MarkingProperties.java @@ -108,4 +108,12 @@ return Integer.valueOf(properties.getProperty("textarea.fontsize").trim()); } + public static Boolean copyIdToClipboard() { + return properties.getProperty("copy.id.to.clipboard").equalsIgnoreCase("true"); + } + + public static Boolean showBonusOnReport() { + return properties.getProperty("show.bonus.on.report").equalsIgnoreCase("true"); + } + }