- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getNewInput (0.23 sec)
-
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()); } public void test_getInput() { // Test getInput method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
ProtwordsItem item = new ProtwordsItem(1, "word"); assertNull(item.getNewInput()); item.setNewInput("newword"); assertEquals("newword", item.getNewInput()); } public void test_setNewInput() { // Test setNewInput method ProtwordsItem item = new ProtwordsItem(1, "word"); item.setNewInput("updatedword");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
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);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0)