Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setNewSegmentation (0.16 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java

                    20);
            assertEquals(3, itemList1.size());
    
            final KuromojiItem kuromojiItem1 = itemList1.get(0);
            kuromojiItem1.setNewToken("TOKEN1");
            kuromojiItem1.setNewSegmentation("SEG1");
            kuromojiItem1.setNewReading("READING1");
            kuromojiItem1.setNewPos("POS1");
            kuromojiFile.update(kuromojiItem1);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

        public String getNewSegmentation() {
            return newSegmentation;
        }
    
        /**
         * Sets the new segmentation.
         *
         * @param newSegmentation The new segmentation.
         */
        public void setNewSegmentation(final String newSegmentation) {
            this.newSegmentation = newSegmentation;
        }
    
        /**
         * Returns the new reading.
         *
         * @return The new reading.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.3K bytes
    - Click Count (0)
Back to Top