Feature/issue 134 change pref defaults by PhilippSalvisberg · Pull Request #149 · utPLSQL/utPLSQL-SQLDeveloper
public boolean isShowDisabledCounter() { return getHashStructure().getBoolean(KEY_SHOW_DISABLED_COUNTER, false); return getHashStructure().getBoolean(KEY_SHOW_DISABLED_COUNTER, true); }
public void setShowDisabledCounter(final boolean showDisabledCounter) { getHashStructure().putBoolean(KEY_SHOW_DISABLED_COUNTER, showDisabledCounter); }
public boolean isShowWarningsCounter() { return getHashStructure().getBoolean(KEY_SHOW_WARNINGS_COUNTER, false); return getHashStructure().getBoolean(KEY_SHOW_WARNINGS_COUNTER, true); }
public void setShowWarningsCounter(final boolean showWarningCounter) { getHashStructure().putBoolean(KEY_SHOW_WARNINGS_COUNTER, showWarningCounter); }
public boolean isShowInfoCounter() { return getHashStructure().getBoolean(KEY_SHOW_INFO_COUNTER, false); return getHashStructure().getBoolean(KEY_SHOW_INFO_COUNTER, true); }
public void setShowInfoCounter(final boolean showInfoCounter) { getHashStructure().putBoolean(KEY_SHOW_INFO_COUNTER, showInfoCounter); }
public boolean isShowWarningIndicator() { return getHashStructure().getBoolean(KEY_SHOW_WARNING_INDICATOR, false); return getHashStructure().getBoolean(KEY_SHOW_WARNING_INDICATOR, true); }
public void setShowWarningIndicator(final boolean showWarningIndicator) { getHashStructure().putBoolean(KEY_SHOW_WARNING_INDICATOR, showWarningIndicator); }
public boolean isShowInfoIndicator() { return getHashStructure().getBoolean(KEY_SHOW_INFO_INDICATOR, false); return getHashStructure().getBoolean(KEY_SHOW_INFO_INDICATOR, true); }
public void setShowInfoIndicator(final boolean showInfoIndicator) {
public boolean isShowTestDescription() { return getHashStructure().getBoolean(KEY_SHOW_TEST_DESCRIPTION, false); return getHashStructure().getBoolean(KEY_SHOW_TEST_DESCRIPTION, true); }
public void setShowTestDescription(final boolean showTestDescription) {