Examples of TagPlugin


Examples of org.apache.struts2.jasper.compiler.tagplugin.TagPlugin

     * the custom tag's tag handler.
     *
     * The given custom tag node will be manipulated by the plugin.
     */
    private void invokePlugin(Node.CustomTag n) {
  TagPlugin tagPlugin = (TagPlugin)
    tagPlugins.get(n.getTagHandlerClass().getName());
  if (tagPlugin == null) {
      return;
  }

  TagPluginContext tagPluginContext = new TagPluginContextImpl(n, pageInfo);
  n.setTagPluginContext(tagPluginContext);
  tagPlugin.doTag(tagPluginContext);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.