// FindWhichGroupStateUtils // setFindAll(boolean) // getFindAll() // // choices are: find all or find bookmarked function FindWhichGroupStateUtils() { this._whichUtils = newBooleanInStorage('Lenses.FindWhichGroupStateUtils.Which.FindAll'); this.setFindAll = function setFindAll(booleanValue) { this._whichUtils.set(booleanValue); }; this.getFindAll = function getFindAll() { const booleanValue = this._whichUtils.get(); return booleanValue; }; this.hasValue = function hasValue() { return this._whichUtils.hasValue(); }; }