- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 42 for setExistNextPage (0.07 sec)
-
src/test/java/org/codelibs/fess/app/pager/DuplicateHostPagerTest.java
assertEquals(999, duplicatehostpager.getAllPageCount()); duplicatehostpager.setExistPrePage(true); assertTrue(duplicatehostpager.isExistPrePage()); duplicatehostpager.setExistNextPage(true); assertTrue(duplicatehostpager.isExistNextPage()); duplicatehostpager.setPageSize(0); assertEquals(25, duplicatehostpager.getPageSize()); duplicatehostpager.setPageSize(999);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SynonymPager.java
return existNextPage; } /** * Sets the flag for the existence of a next page. * * @param existNextPage true if a next page exists. */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Gets the page size. * * @return The page size. */ public int getPageSize() {
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
this.allPageCount = allPageCount; } /** * Sets whether a next page exists. * * @param existNextPage true if a next page exists */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Sets whether a previous page exists. * * @param existPrevPage 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 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java
return existNextPage; } /** * Sets whether a next page exists. * * @param existNextPage True if a next page exists. */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Returns the page size. * * @return The page size. */ public int getPageSize() {
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
return existNextPage; } /** * Sets whether a next page exists. * @param existNextPage true if a next page exists, false otherwise. */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Gets the page size. * @return The page size. */ public int getPageSize() {
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
return existNextPage; } /** * Sets whether a next page exists. * * @param existNextPage true if next page exists, false otherwise */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Gets the number of records to display per page.
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 boolean isExistNextPage() { return existNextPage; } /** * Sets whether a next page exists. * @param existNextPage true if next page exists */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Gets the page size. * @return the page size */ public int getPageSize() {
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
return existNextPage; } /** * Sets the existence of a next page. * @param existNextPage True if a next page exists. */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Gets the page size for pagination. * @return The page size. */ public int getPageSize() {
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/LabelTypePager.java
return existNextPage; } /** * Sets whether a next page exists. * * @param existNextPage True if a next page exists. */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Returns the page size. * * @return The page size. */ public int getPageSize() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
} /** * Sets the flag indicating if a next page exists. * * @param existNextPage true if a next page exists, false otherwise */ public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; } /** * Gets the number of records per page. * If page size is not set or is invalid, returns the default page size.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0)