- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for new_output (0.04 seconds)
-
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", " ");
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/synonym/SynonymItem.java
*/ public String[] getNewOutputs() { return newOutputs == null ? null : newOutputs.clone(); } /** * 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.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 6K bytes - Click Count (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")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16K bytes - Click Count (0)