Example usage for javax.servlet.jsp.tagext SimpleTagSupport subclass-usage

List of usage examples for javax.servlet.jsp.tagext SimpleTagSupport subclass-usage

Introduction

In this page you can find the example usage for javax.servlet.jsp.tagext SimpleTagSupport subclass-usage.

Usage

From source file com.swcguild.dummy.CaptchaTag.java

public class CaptchaTag extends SimpleTagSupport {
    private String publickey;
    private String privatekey;
    private String themeName;

    @Override

From source file com.siemens.sw360.portal.tags.DisplayDescription.java

/**
 * This prepares the description for display
 *
 * @author birgit.heydenreich@tngtech.com
 * @author alex.borodin@evosoft.com
 */

From source file org.eclipse.sw360.portal.tags.DisplayDescription.java

/**
 * This prepares the description for display
 *
 * @author birgit.heydenreich@tngtech.com
 * @author alex.borodin@evosoft.com
 */

From source file net.jforum.core.tags.JForumTag.java

/**
 * @author Rafael Steil
 */
public abstract class JForumTag extends SimpleTagSupport {
    private static ApplicationContext springContext;

From source file org.eclipse.sw360.portal.tags.DisplayUserGroup.java

/**
 * This displays a user's group. It makes a DB roundtrip for each invocation. Use with caution!
 *
 * @author alex.borodin@evosoft.com
 */
public class DisplayUserGroup extends SimpleTagSupport {

From source file gov.nih.nci.cabig.ccts.tags.CheckRoleTag.java

public class CheckRoleTag extends SimpleTagSupport {

    private static final Log log = LogFactory.getLog(CheckRoleTag.class);
    private boolean hasTheRoles;
    private String roleName;

From source file org.lightadmin.core.view.tags.AbstractAutowiredTag.java

public abstract class AbstractAutowiredTag extends SimpleTagSupport {

    @Override
    public void setJspContext(JspContext context) {
        super.setJspContext(context);

From source file com.cognifide.slice.api.tag.SliceLookupTag.java

/**
 * Implementation of the tag which allows to bind given model instance to a jsp variable.
 *
 * Example jsp code:
 *
 * <code>

From source file org.openmrs.module.metadatasharing.web.taglib.PrintJavaScriptTag.java

/**
 * This class allows to print easily values for JavaScript code in jsp pages. It outputs null values
 * as 'null'. Other values are JavaScript and HTML escaped;
 */
public class PrintJavaScriptTag extends SimpleTagSupport {

From source file org.openmrs.module.metadatasharing.web.taglib.handler.ObjectHandlerTag.java

/**
 * This class allows to access objects through {@link MetadataTypeHandler} in jsp pages.
 */
public class ObjectHandlerTag extends SimpleTagSupport {

    private Object object;