- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getNewInputs (0.08 sec)
-
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
// Initially null for non-zero id assertNull(item.getNewInputs()); // Set new inputs String[] newInputs = { "new1", "new2" }; item.setNewInputs(newInputs); assertNotNull(item.getNewInputs()); assertEquals(2, item.getNewInputs().length); assertEquals("new1", item.getNewInputs()[0]); assertEquals("new2", item.getNewInputs()[1]); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
newInputs = inputs; newOutputs = outputs; } } /** * Gets the new input words. * * @return The new input words. */ public String[] getNewInputs() { return newInputs; } /** * Sets the new input words. * * @param newInputs The new input words. */ public void setNewInputs(final String[] newInputs) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
} /** * Returns the array of new input character sequences for update operations. * * @return array of new input sequences, or null if no updates are pending */ public String[] getNewInputs() { return newInputs; } /** * Sets the array of new input character sequences for update operations. * * @param newInputs array of new input sequences to set */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
// update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR); return new CharMappingItem(item.getId(), item.getNewInputs(), item.getNewOutput()); } return null; } finally { item.setNewInputs(null); item.setNewOutput(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
// update writer.write(item.toLineString()); writer.write(Constants.LINE_SEPARATOR); return new SynonymItem(item.getId(), item.getNewInputs(), item.getNewOutputs()); } return null; } finally { item.setNewInputs(null); item.setNewOutputs(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0)