Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getNewInputs (0.04 sec)

  1. src/test/java/org/codelibs/fess/dict/synonym/SynonymItemTest.java

            assertEquals(2, synonymItem.getOutputs().length);
            assertEquals("b", synonymItem.getOutputs()[0]);
            assertEquals("B", synonymItem.getOutputs()[1]);
            assertNull(synonymItem.getNewInputs());
            assertNull(synonymItem.getNewOutputs());
            assertFalse(synonymItem.isUpdated());
            assertFalse(synonymItem.isDeleted());
    
            synonymItem.setNewInputs(new String[] { "1", "2" });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5K bytes
    - Viewed (1)
  2. 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)
  3. 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)
Back to top