Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for getNewInput (0.05 seconds)

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

            // Test getNewInput method
            ProtwordsItem item = new ProtwordsItem(1, "word");
            assertNull(item.getNewInput());
    
            item.setNewInput("newword");
            assertEquals("newword", item.getNewInput());
        }
    
        @Test
        public void test_setNewInput() {
            // Test setNewInput method
            ProtwordsItem item = new ProtwordsItem(1, "word");
    
            item.setNewInput("updatedword");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            StopwordsItem item = new StopwordsItem(1, "or");
            assertNull(item.getNewInput());
    
            item.setNewInput("nor");
            assertEquals("nor", item.getNewInput());
    
            item.setNewInput("");
            assertEquals("", item.getNewInput());
    
            item.setNewInput(null);
            assertNull(item.getNewInput());
        }
    
        @Test
        public void test_getInput() {
            // Test getInput method
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

                            // update
                            writer.write(item.toLineString());
                            writer.write(Constants.LINE_SEPARATOR);
                            return new ProtwordsItem(item.getId(), item.getNewInput());
                        }
                        return null;
                    } finally {
                        item.setNewInput(null);
                    }
                } catch (final IOException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                            // update
                            writer.write(item.toLineString());
                            writer.write(Constants.LINE_SEPARATOR);
                            return new StopwordsItem(item.getId(), item.getNewInput());
                        }
                        return null;
                    } finally {
                        item.setNewInput(null);
                    }
                } catch (final IOException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 13K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                            writer.write(item.toLineString());
                            writer.write(Constants.LINE_SEPARATOR);
                            return new StemmerOverrideItem(item.getId(), item.getNewInput(), item.getNewOutput());
                        }
                        return null;
                    } finally {
                        item.setNewInput(null);
                        item.setNewOutput(null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
Back to Top