Package com.atlassian.confluence.util
Class HTMLPairType
- java.lang.Object
-
- com.atlassian.confluence.util.HTMLPairType
-
- All Implemented Interfaces:
Serializable
public class HTMLPairType extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HTMLPairType()
HTMLPairType(com.atlassian.velocity.htmlsafe.HtmlFragment key, com.atlassian.velocity.htmlsafe.HtmlFragment value)
Constructs a HTMLPairtype using the passed in HtmlFragments.HTMLPairType(String key, String value)
Convinience method that will create HtmlFragments to surround the passed strings.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
com.atlassian.velocity.htmlsafe.HtmlFragment
getKey()
com.atlassian.velocity.htmlsafe.HtmlFragment
getValue()
int
hashCode()
void
setKey(com.atlassian.velocity.htmlsafe.HtmlFragment key)
void
setValue(com.atlassian.velocity.htmlsafe.HtmlFragment value)
String
toString()
-
-
-
Constructor Detail
-
HTMLPairType
public HTMLPairType()
-
HTMLPairType
public HTMLPairType(com.atlassian.velocity.htmlsafe.HtmlFragment key, com.atlassian.velocity.htmlsafe.HtmlFragment value)
Constructs a HTMLPairtype using the passed in HtmlFragments.- Parameters:
key
- the key returned when getKey is called.value
- the value returned when getValue is called.
-
-
Method Detail
-
getKey
public com.atlassian.velocity.htmlsafe.HtmlFragment getKey()
-
setKey
public void setKey(com.atlassian.velocity.htmlsafe.HtmlFragment key)
-
getValue
public com.atlassian.velocity.htmlsafe.HtmlFragment getValue()
-
setValue
public void setValue(com.atlassian.velocity.htmlsafe.HtmlFragment value)
-
-