- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for setNewOutput (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
*/ public String getNewOutput() { return newOutput; } /** * Sets the new output stem. * * @param newOutputs The new output stem. */ public void setNewOutput(final String newOutputs) { newOutput = newOutputs; } /** * Gets the original input word. * * @return The original input word. */ public String getInput() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
* Newline characters in the output are automatically replaced with spaces. * * @param newOutput the new output sequence to set */ public void setNewOutput(final String newOutput) { this.newOutput = newOutput == null ? null : newOutput.replace("\n", " "); } /** * Returns the array of input character sequences that are mapped to the output.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 7.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
public synchronized void delete(final StemmerOverrideItem item) { final StemmerOverrideItem stemmerOverrideItem = item; stemmerOverrideItem.setNewInput(StringUtil.EMPTY); stemmerOverrideItem.setNewOutput(StringUtil.EMPTY); try (StemmerOverrideUpdater updater = new StemmerOverrideUpdater(item)) { reload(updater); } } /**
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) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
*/ @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); } } /** * Reloads the character mapping items from the dictionary file.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 15.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
validateMappingString(action, newInputs, "inputs", hook); entity.setNewInputs(newInputs); final String newOutput = form.output; entity.setNewOutput(newOutput); return entity; }); } // ===================================================================================
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 22.3K bytes - Click Count (0)