Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 582b8a3

Browse files
closes #134 - new default values of realtime reporter preferences according
checked instead of unchecked for - Show disabled counter? - Show warning counter? - Show info counter? - Show warning indicator? - Show info indicator? - Show description (if present)?
1 parent 32fd6e2 commit 582b8a3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sqldev/src/main/java/org/utplsql/sqldev/model/preference/PreferenceModel.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -172,39 +172,39 @@ public void setNumberOfRunsInHistory(final int runs) {
172172
}
173173

174174
public boolean isShowDisabledCounter() {
175-
return getHashStructure().getBoolean(KEY_SHOW_DISABLED_COUNTER, false);
175+
return getHashStructure().getBoolean(KEY_SHOW_DISABLED_COUNTER, true);
176176
}
177177

178178
public void setShowDisabledCounter(final boolean showDisabledCounter) {
179179
getHashStructure().putBoolean(KEY_SHOW_DISABLED_COUNTER, showDisabledCounter);
180180
}
181181

182182
public boolean isShowWarningsCounter() {
183-
return getHashStructure().getBoolean(KEY_SHOW_WARNINGS_COUNTER, false);
183+
return getHashStructure().getBoolean(KEY_SHOW_WARNINGS_COUNTER, true);
184184
}
185185

186186
public void setShowWarningsCounter(final boolean showWarningCounter) {
187187
getHashStructure().putBoolean(KEY_SHOW_WARNINGS_COUNTER, showWarningCounter);
188188
}
189189

190190
public boolean isShowInfoCounter() {
191-
return getHashStructure().getBoolean(KEY_SHOW_INFO_COUNTER, false);
191+
return getHashStructure().getBoolean(KEY_SHOW_INFO_COUNTER, true);
192192
}
193193

194194
public void setShowInfoCounter(final boolean showInfoCounter) {
195195
getHashStructure().putBoolean(KEY_SHOW_INFO_COUNTER, showInfoCounter);
196196
}
197197

198198
public boolean isShowWarningIndicator() {
199-
return getHashStructure().getBoolean(KEY_SHOW_WARNING_INDICATOR, false);
199+
return getHashStructure().getBoolean(KEY_SHOW_WARNING_INDICATOR, true);
200200
}
201201

202202
public void setShowWarningIndicator(final boolean showWarningIndicator) {
203203
getHashStructure().putBoolean(KEY_SHOW_WARNING_INDICATOR, showWarningIndicator);
204204
}
205205

206206
public boolean isShowInfoIndicator() {
207-
return getHashStructure().getBoolean(KEY_SHOW_INFO_INDICATOR, false);
207+
return getHashStructure().getBoolean(KEY_SHOW_INFO_INDICATOR, true);
208208
}
209209

210210
public void setShowInfoIndicator(final boolean showInfoIndicator) {
@@ -228,7 +228,7 @@ public void setShowDisabledTests(final boolean showDisabledTests) {
228228
}
229229

230230
public boolean isShowTestDescription() {
231-
return getHashStructure().getBoolean(KEY_SHOW_TEST_DESCRIPTION, false);
231+
return getHashStructure().getBoolean(KEY_SHOW_TEST_DESCRIPTION, true);
232232
}
233233

234234
public void setShowTestDescription(final boolean showTestDescription) {

0 commit comments

Comments
 (0)