Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNewOutputs (2 sec)

  1. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

        }
    
        /**
         * Gets the new output synonyms.
         * Returns a defensive copy to prevent external modification.
         *
         * @return The new output synonyms (defensive copy).
         */
        public String[] getNewOutputs() {
            return newOutputs == null ? null : newOutputs.clone();
        }
    
        /**
         * Sets the new output synonyms.
         *
         * @param newOutputs The new output synonyms.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                            writer.write(item.toLineString());
                            writer.write(Constants.LINE_SEPARATOR);
                            return new SynonymItem(item.getId(), item.getNewInputs(), item.getNewOutputs());
                        }
                        return null;
                    } finally {
                        item.setNewInputs(null);
                        item.setNewOutputs(null);
                    }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 15.9K bytes
    - Viewed (0)
Back to top