Interface AnchorTag

    • Field Detail

      • TAG_NAME

        static final java.lang.String TAG_NAME
        The constant name of the AnchorTag.
        See Also:
        Constant Field Values
    • Method Detail

      • getWebEvent

        WebEvent getWebEvent()
        Returns the WebEvent associated with this tag
        Returns:
        an instance of WebEvent.
      • setWebEvent

        void setWebEvent​(WebEvent event)
        Sets a valid WebEvent associated with this tag Note the WebEvent passed in can also be an instance that supports multiple event
        Parameters:
        event - an instance of WebEvent.c
        See Also:
        WebEventHandlerFactory.newMultipleEventHelper()
      • getEventElements

        int getEventElements()
        Returns the setting that defines how much of the event information should be included in the renderd anchor tag
        Returns:
        the value set by setEventElements(int)
      • setEventElements

        void setEventElements​(int eventElements)
        Defines how much event information to include This is a value from EnumEventElement
        Parameters:
        eventElements - an integer value indicating how much event information to include.
      • isIFrameEvent

        boolean isIFrameEvent()
        Indicates whether the event associated with this tag should be treated as an iFrame event. Returns the value set using setUseIFrame(boolean)
        Returns:
        a boolean value indicating whether the associated event is an iFrame event.
      • setUseIFrame

        void setUseIFrame​(boolean iFrame)
        Indicates whether the event associated with this tag should be treated as an iFrame event. If so, an HTML fragment "iframe=true" will be added to the rendered result.
        Parameters:
        iFrame - a boolean value indicating whether the associated event is an iFrame event.
      • setHash

        void setHash​(java.lang.String hash)
        Sets the hash value to be append at the end of the href For instance, in the url http://server/test.jsp?abc=1#hv #hv would be the hash that you would need to specify
        Parameters:
        hash -