- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for new_outputs (0.07 sec)
-
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
* * @return The new output stem. */ 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.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
* @return The new output synonyms. */ public String[] getNewOutputs() { return newOutputs; } /** * Sets the new output synonyms. * * @param newOutputs The new output synonyms. */ public void setNewOutputs(final String[] newOutputs) { this.newOutputs = newOutputs; } /** * Gets the original input words. *
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
public String getNewOutput() { return newOutput; } /** * Sets the new output character sequence for update operations. * 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", " ");
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/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
item.setNewOutput("newOutput"); String str = item.toString(); assertTrue(str.contains("id=1")); assertTrue(str.contains("inputs=[a, b]")); assertTrue(str.contains("output=output")); assertTrue(str.contains("newInputs=[x, y]")); assertTrue(str.contains("newOutput=newOutput")); } public void test_toLineString_withoutUpdates() {
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/app/web/admin/dict/synonym/AdminDictSynonymAction.java
validateSynonymString(action, newInputs, "inputs", hook); entity.setNewInputs(newInputs); final String[] newOutputs = splitLine(form.outputs); validateSynonymString(action, newOutputs, "outputs", hook); entity.setNewOutputs(newOutputs); return entity; }); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
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; }); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0)