Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for godHandMonologue (0.08 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

         * @return the action response, or null to continue with normal processing
         */
        @Override
        public final ActionResponse godHandMonologue(final ActionRuntime runtime) {
            return viewHelper.getActionHook().godHandMonologue(runtime, super::godHandMonologue);
        }
    
        /**
         * Hook method called after action execution.
         * This method delegates to the view helper's action hook for cleanup.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 15K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

             *
             * @param runtime the action runtime
             * @param func the function to execute
             * @return the action response
             */
            public ActionResponse godHandMonologue(final ActionRuntime runtime, final Function<ActionRuntime, ActionResponse> func) {
                return func.apply(runtime);
            }
    
            /**
             * Epilogue hook for action processing.
             *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 52.6K bytes
    - Viewed (0)
Back to top