- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for isExistNextPage (0.53 sec)
-
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
assertFalse(searchRenderData.isExistNextPage()); // Test with true searchRenderData.setExistNextPage(true); assertTrue(searchRenderData.isExistNextPage()); // Toggle back to false searchRenderData.setExistNextPage(false); assertFalse(searchRenderData.isExistNextPage()); } public void test_setAndIsExistPrevPage() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
assertEquals(0, qrList.getAllRecordCount()); assertEquals(1, qrList.getAllPageCount()); assertEquals(false, qrList.isExistPrevPage()); assertEquals(false, qrList.isExistNextPage()); assertEquals(0, qrList.getCurrentStartRecordNumber()); assertEquals(0, qrList.getCurrentEndRecordNumber()); } public void test_calculatePageInfo_page1() { QueryResponseList qrList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
this.existPrePage = existPrePage; } /** * Returns true if a next page exists. * * @return True if a next page exists. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether a next page exists. * * @param existNextPage True if a next page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
this.existPrePage = existPrePage; } /** * Checks if a next page exists. * * @return True if a next page exists, false otherwise */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether a next page exists. * * @param existNextPage True if a next page exists */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
this.existPrePage = existPrePage; } /** * Checks if a next page exists for pagination. * * @return true if a next page exists, false otherwise */ public boolean isExistNextPage() { return existNextPage; } /** * Sets the flag indicating whether a next page exists. * * @param existNextPage true if a next page exists, false otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java
this.existPrePage = existPrePage; } /** * Returns true if a next page exists. * * @return True if a next page exists. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether a next page exists. * * @param existNextPage True if a next page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SynonymPager.java
this.existPrePage = existPrePage; } /** * Checks if a next page exists. * * @return true if a next page exists, false otherwise. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets the flag for the existence of a next page. * * @param existNextPage true if a next page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java
this.existPrePage = existPrePage; } /** * Checks if a next page exists. * @return true if a next page exists, false otherwise. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether a next page exists. * @param existNextPage true if a next page exists, false otherwise. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java
this.existPrePage = existPrePage; } /** * Checks if there is a next page. * @return true if next page exists, false otherwise */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether a next page exists. * @param existNextPage true if next page exists */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BadWordPager.java
this.existPrePage = existPrePage; } /** * Checks if there is a next page. * @return True if a next page exists, false otherwise. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets the existence of a next page. * @param existNextPage True if a next page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0)