- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for godHandMonologue (0.06 sec)
-
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
ViewHelper.ActionHook actionHook = new ViewHelper.ActionHook(); try { assertNull(actionHook.godHandPrologue(null, runtime -> null)); assertNull(actionHook.godHandMonologue(null, runtime -> null)); actionHook.godHandEpilogue(null, runtime -> {}); assertNull(actionHook.hookBefore(null, runtime -> null)); actionHook.hookFinally(null, runtime -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)