Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getOutputsValue (0.05 sec)

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

            return outputs;
        }
    
        /**
         * Gets the output synonyms as a newline-separated string.
         *
         * @return The output synonyms as a string.
         */
        public String getOutputsValue() {
            if (outputs == null) {
                return StringUtil.EMPTY;
            }
            return String.join("\n", outputs);
        }
    
        /**
         * Checks if the item has been updated.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

            synonymService.getSynonymItem(form.dictId, form.id).ifPresent(entity -> {
                form.inputs = entity.getInputsValue();
                form.outputs = entity.getOutputsValue();
            }).orElse(() -> {
                throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()),
                        () -> asListHtml(form.dictId));
            });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

            final EditBody body = new EditBody();
            body.id = entity.getId();
            body.dictId = dictId;
            body.inputs = entity.getInputsValue();
            body.outputs = entity.getOutputsValue();
            return body;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top