add javadocs for isPrivate()

This commit is contained in:
Simon Willnauer 2016-03-22 17:33:51 +01:00
parent 68d07fc01f
commit c0ef3189b7

View File

@ -520,6 +520,11 @@ public abstract class AbstractScopedSettings extends AbstractComponent {
}
}
/**
* Returns <code>true</code> iff the setting is a private setting ie. it should be treated as valid even though it has no internal
* representation. Otherwise <code>false</code>
*/
// TODO this should be replaced by Setting.Property.HIDDEN or something like this.
protected boolean isPrivateSetting(String key) {
return false;
}