- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for StopwordsPager (0.07 seconds)
-
src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java
* including total record count, page size, and current page number. */ public class StopwordsPager implements Serializable { /** * Constructs a new pager for stopwords. */ public StopwordsPager() { // do nothing } private static final long serialVersionUID = 1L; /** The total number of records. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/StopwordsPagerTest.java
StopwordsPager stopwordsPager = new StopwordsPager(); stopwordsPager.clear(); assertEquals(0, stopwordsPager.getAllRecordCount()); assertEquals(0, stopwordsPager.getAllPageCount()); assertEquals(false, stopwordsPager.isExistPrePage()); assertEquals(false, stopwordsPager.isExistNextPage()); assertEquals(25, stopwordsPager.getPageSize());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
* * @param dictId The ID of the dictionary. * @param stopwordsPager The pager for controlling pagination. * @return A list of stopwords. */ public List<StopwordsItem> getStopwordsList(final String dictId, final StopwordsPager stopwordsPager) { return getStopwordsFile(dictId).map(file -> { final int pageSize = stopwordsPager.getPageSize(); final PagingList<StopwordsItem> stopwordsList =Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
// ========= @Resource private StopwordsService stopwordsService; @Resource private StopwordsPager stopwordsPager; // =================================================================================== // HookCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 20.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
@Execute public JsonResponse<ApiResult> get$settings(final String dictId, final SearchBody body) { body.dictId = dictId; validateApi(body, messages -> {}); final StopwordsPager pager = copyBeanToNewBean(body, StopwordsPager.class); return asJson(new ApiResult.ApiConfigsResponse<EditBody>().settings(stopwordsService.getStopwordsList(body.dictId, pager) .stream()Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.3K bytes - Click Count (0)