Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for DictionaryItem (0.11 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

     * CRUD operations and pagination support.
     *
     * @param <T> the type of dictionary items managed by this file
     */
    public abstract class DictionaryFile<T extends DictionaryItem> {
        /** The dictionary manager responsible for this file. */
        protected DictionaryManager dictionaryManager;
    
        /** The unique identifier for this dictionary file. */
        protected String id;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            assertEquals(42L, item.getId());
        }
    
        public void test_getCreatedBy_getCreatedTime() {
            // Test inherited methods from DictionaryItem
            CharMappingItem item = new CharMappingItem(1L, new String[] { "input" }, "output");
    
            // Test basic properties that exist
            assertNotNull(item.getInputs());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top