- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for setNewInputs (0.08 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
* @param item the character mapping item to delete */ @Override public synchronized void delete(final CharMappingItem item) { final CharMappingItem mappingItem = item; mappingItem.setNewInputs(StringUtil.EMPTY_STRINGS); mappingItem.setNewOutput(StringUtil.EMPTY); try (MappingUpdater updater = new MappingUpdater(item)) { reload(updater); } } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
return newInputs == null ? null : newInputs.clone(); } /** * Sets the new input words. * * @param newInputs The new input words. */ public void setNewInputs(final String[] newInputs) { this.newInputs = newInputs; } /** * Gets the new output synonyms. * Returns a defensive copy to prevent external modification. *
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
} /** * Sets the array of new input character sequences for update operations. * * @param newInputs array of new input sequences to set */ public void setNewInputs(final String[] newInputs) { this.newInputs = newInputs; } /** * Returns the new output character sequence for update operations. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
reload(updater); } } @Override public synchronized void delete(final SynonymItem item) { final SynonymItem synonymItem = item; synonymItem.setNewInputs(StringUtil.EMPTY_STRINGS); synonymItem.setNewOutputs(StringUtil.EMPTY_STRINGS); try (SynonymUpdater updater = new SynonymUpdater(item)) { reload(updater); } } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 15.9K bytes - Viewed (0)