Class BaseTag

  • All Implemented Interfaces:
    java.io.Serializable, javax.servlet.jsp.tagext.IterationTag, javax.servlet.jsp.tagext.JspTag, javax.servlet.jsp.tagext.Tag

    public class BaseTag
    extends AbstractNoBodyTag
    Since:
    MicroStrategy Web 7.3.1 or earlier
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class javax.servlet.jsp.tagext.TagSupport

        id, pageContext
      • Fields inherited from interface javax.servlet.jsp.tagext.IterationTag

        EVAL_BODY_AGAIN
      • Fields inherited from interface javax.servlet.jsp.tagext.Tag

        EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
    • Constructor Summary

      Constructors 
      Constructor Description
      BaseTag()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      AbstractNoBodyTagHelper getHelper()
      Retrieves the helper associated with the tag.
      void setAttribute​(java.lang.String value)
      Indicates the HTML tag attribute to create and to which the resource information value obtained will be assigned to.
      void setBundleName​(java.lang.String value)
      This is specific to the tags with type "jsbundle".
      void setDebugBundleName​(java.lang.String value)
      This is specific to the tags with type "jsbundle".
      void setLocation​(java.lang.String value)
      This is specific to the tags with type "javascript".
      void setName​(java.lang.String value)
      Indicates the name only (and any extra path information if necessary) of the file to which the resource path information will be added.
      void setType​(java.lang.String value)
      Indicates the type of resource folder information it will search for in order to complete the path information for the file specified.
      • Methods inherited from class javax.servlet.jsp.tagext.TagSupport

        doAfterBody, findAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setPageContext, setParent, setValue
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BaseTag

        public BaseTag()
    • Method Detail

      • setType

        public void setType​(java.lang.String value)
        Indicates the type of resource folder information it will search for in order to complete the path information for the file specified.
        Usage:
        The possible values for this attribute include:
      • helpfile: The information to obtain will correspond to the location of the help file to be shown to the user
      • image: The information to obtain will include the full resource path where the images are located. If the attribute value is not specified, it will default to obtain the image resource path.
      • javascript: The information to obtain will include the full resource path where the javascript files are located.
      • section: The information to obtain will correspond to the path and file name of the specified section on the PageComponent template.
      • style: The information to obtain will include the full resource path where the style files are located. Some extra logic is executed for determining which one of the possible four resource paths should be used, depending on the environment from the user is calling the request.
      • custom-style: The information to obtain will include the full resource path where custom style files are located.
      • custom-javascript: The information to obtain will include the full resource path where custom javascript files are located.
Parameters:
value - String value with the type of resource folder to search for.
See Also:
BaseTag