Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setEmptySource (0.06 sec)

  1. src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java

            assertTrue(Arrays.asList(result).contains(SuggestItem.Kind.DOCUMENT));
        }
    
        @Test
        public void testEmptySource() {
            // Test setEmptySource and related methods
            String[] text = { "test" };
            String[][] readings = { { "test" } };
            SuggestItem item = new SuggestItem(text, readings, null, 0L, 0L, 1.0f, null, null, null, SuggestItem.Kind.QUERY);
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

        public void setKinds(final Kind[] kinds) {
            this.kinds = kinds;
        }
    
        /**
         * Sets the empty source map.
         * @param emptySource The empty source map to set.
         */
        public void setEmptySource(final Map<String, Object> emptySource) {
            this.emptySource = emptySource;
        }
    
        /**
         * Sets the ID of the suggest item.
         * @param id The ID to set.
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 25.1K bytes
    - Viewed (0)
Back to top