public class

SplitTag

extends WebWorkTagSupport
java.lang.Object
   ↳ javax.servlet.jsp.tagext.TagSupport
     ↳ webwork.view.taglib.WebWorkTagSupport
       ↳ com.atlassian.jira.web.tags.text.SplitTag

Class Overview

Represents a JSP javax.servlet.jsp.tagext.Tag that is able to divide a String into substrings, by recognizing a separator (a.k.a. "delimiter") and make them available through an Iterator that is pushed to the top of the ValueStack.

Summary

[Expand]
Inherited Constants
From interface javax.servlet.jsp.tagext.IterationTag
From interface javax.servlet.jsp.tagext.Tag
[Expand]
Inherited Fields
From class webwork.view.taglib.WebWorkTagSupport
From class javax.servlet.jsp.tagext.TagSupport
Public Constructors
SplitTag()
Public Methods
int doEndTag()
String getSeparator()
Gets the separator to be used to recognise the substrings in the string to be split.
String getValue()
Gets the specified String to be split into sub-components.
void setSeparator(String separator)
void setValue(String value)
[Expand]
Inherited Methods
From class webwork.view.taglib.WebWorkTagSupport
From class javax.servlet.jsp.tagext.TagSupport
From class java.lang.Object
From interface javax.servlet.jsp.tagext.IterationTag
From interface javax.servlet.jsp.tagext.Tag

Public Constructors

public SplitTag ()

Public Methods

public int doEndTag ()

Throws
JspException

public String getSeparator ()

Gets the separator to be used to recognise the substrings in the string to be split.

Returns
  • A String containing the separator to be used to recognise the substrings in the string to be split.

public String getValue ()

Gets the specified String to be split into sub-components.

Returns
  • A String containing the text that will be split into sub-components.

public void setSeparator (String separator)

public void setValue (String value)