{#include main fluid=true} {#style} .annotation { color: gray; font-style: italic; } span.larger-badge { font-size: 0.9em; } span.app-class { cursor:pointer; color:blue; text-decoration:underline; } {/style} {#script} $(document).ready(function(){ if (!ideKnown()) { return; } $(".class-candidate").each(function() { var className = $(this).text(); if (appClassLocation(className)) { $(this).addClass("app-class"); } }); $(".app-class").on("click", function() { openInIDE($(this).text()); }); }); {/script} {#title}Interceptors{/title} {#body} {#for interceptor in info:devBeanInfos.interceptors} {/for}
# Interceptor Class Priority Bindings Interception Types
{interceptor_count}. {interceptor.interceptorClass} {interceptor.priority} {#for b in interceptor.bindings} {b.simpleName}
{/for}
    {#each interceptor.intercepts}
  • {#interception-type it.key /} {interceptor.interceptorClass.simpleName}#{it.value.name}()
  • {/each}
{/body} {/include}