Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getNewInput (0.04 sec)

  1. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

                newInput = input;
                newOutput = output;
            }
        }
    
        /**
         * Gets the new input word.
         *
         * @return The new input word.
         */
        public String getNewInput() {
            return newInput;
        }
    
        /**
         * Sets the new input word.
         *
         * @param newInput The new input word.
         */
        public void setNewInput(final String newInput) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

                // create
                newInput = input;
            }
        }
    
        /**
         * Gets the new input value for this item.
         * @return the new input value
         */
        public String getNewInput() {
            return newInput;
        }
    
        /**
         * Sets the new input value for this item.
         * @param newInput the new input value
         */
        public void setNewInput(final String newInput) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

            if (id == 0) {
                // create
                newInput = input;
            }
        }
    
        /**
         * Gets the new stopword.
         *
         * @return The new stopword.
         */
        public String getNewInput() {
            return newInput;
        }
    
        /**
         * Sets the new stopword.
         *
         * @param newInput The new stopword.
         */
        public void setNewInput(final String newInput) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

                            // update
                            writer.write(item.toLineString());
                            writer.write(Constants.LINE_SEPARATOR);
                            return new ProtwordsItem(item.getId(), item.getNewInput());
                        }
                        return null;
                    } finally {
                        item.setNewInput(null);
                    }
                } catch (final IOException e) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                            // update
                            writer.write(item.toLineString());
                            writer.write(Constants.LINE_SEPARATOR);
                            return new StopwordsItem(item.getId(), item.getNewInput());
                        }
                        return null;
                    } finally {
                        item.setNewInput(null);
                    }
                } catch (final IOException e) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 13K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                            writer.write(item.toLineString());
                            writer.write(Constants.LINE_SEPARATOR);
                            return new StemmerOverrideItem(item.getId(), item.getNewInput(), item.getNewOutput());
                        }
                        return null;
                    } finally {
                        item.setNewInput(null);
                        item.setNewOutput(null);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top