Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DictionaryItem (0.43 sec)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

            item.setNewInput(null);
            assertEquals("originalword", item.toLineString());
        }
    
        public void test_getId() {
            // Test getId method inherited from DictionaryItem
            ProtwordsItem item1 = new ProtwordsItem(0, "word");
            assertEquals(0, item1.getId());
    
            ProtwordsItem item2 = new ProtwordsItem(999, "word");
            assertEquals(999, item2.getId());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. 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)
  3. 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