- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 35 for setAllPageCount (0.07 sec)
-
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
// Test with zero searchRenderData.setAllPageCount(0); assertEquals(0, searchRenderData.getAllPageCount()); // Test with positive values searchRenderData.setAllPageCount(5); assertEquals(5, searchRenderData.getAllPageCount()); searchRenderData.setAllPageCount(1000); assertEquals(1000, searchRenderData.getAllPageCount());
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/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
return allPageCount; } /** * Sets the total number of pages. * * @param allPageCount The total number of pages. */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Returns true if a previous page exists. * * @return True if a previous 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
public int getAllPageCount() { return allPageCount; } /** * Sets the total number of pages. * * @param allPageCount The total page count */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if a previous page exists. * * @return True if a previous page exists, false otherwise */
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
return allPageCount; } /** * Sets the total number of pages available for pagination. * * @param allPageCount the total page count to set */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if a previous page exists for pagination. *
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/SynonymPager.java
return allPageCount; } /** * Sets the total number of pages. * * @param allPageCount The total page count. */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if a previous page exists. * * @return true if a previous page exists, false otherwise.
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/entity/SearchRenderData.java
} /** * Sets the total number of pages based on record count and page size. * * @param allPageCount The total page count */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * 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 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java
return allPageCount; } /** * Sets the total number of pages. * * @param allPageCount The total number of pages. */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Returns true if a previous page exists. * * @return True if a previous 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/RoleTypePager.java
public int getAllPageCount() { return allPageCount; } /** * Sets the total number of pages. * @param allPageCount The total number of pages. */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if a previous page exists. * @return true if a previous 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/RelatedContentPager.java
public int getAllPageCount() { return allPageCount; } /** * Sets the total number of pages. * * @param allPageCount total page count */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if a previous page exists. * * @return true if previous page exists, false otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java
public int getAllPageCount() { return allPageCount; } /** * Sets the total number of pages. * @param allPageCount the total page count */ public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if there is a previous page. * @return true if previous page exists, false otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0)