- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for godHandMonologue (0.26 seconds)
-
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.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 15K bytes - Click Count (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. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 52.6K bytes - Click Count (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 -> {});
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0)