@Internal public final class

RenderablePropertyImpl

extends Object
implements RenderableProperty
java.lang.Object
   ↳ com.atlassian.jira.admin.RenderablePropertyImpl

@Internal

This class is an internal implementation detail and will change without notice.

Clients that depend on @Internal classes and interfaces can not expect to be compatible with any version other than the version they were compiled against (even minor version and milestone releases may break binary compatibility with respect to @Internal elements).

Class Overview

Implementation of RenderableProperty whose behaviour is driven by the ON_DEMAND flag.

Summary

Nested Classes
class RenderablePropertyImpl.Context  
Public Methods
final String getDescriptionHtml()
Returns the description HTML for this property.
final String getEditHtml(String fieldName)
Returns the edit HTML for this renderable application property.
final String getValue()
Returns the property value in raw format.
final String getViewHtml()
Returns the view HTML for this renderable application property.
final void setValue(String value)
Sets the property value.
Protected Methods
final boolean isBTF()
Returns a boolean indicating whether JIRA is running in BTF.
final boolean isOnDemand()
Returns a boolean indicating whether JIRA is running in OnDemand.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.admin.RenderableProperty

Public Methods

public final String getDescriptionHtml ()

Returns the description HTML for this property.

Returns
  • a String containing the description HTML

public final String getEditHtml (String fieldName)

Returns the edit HTML for this renderable application property.

Parameters
fieldName the field name to use in the generated HTML
Returns
  • a String containing the edit HTML

public final String getValue ()

Returns the property value in raw format.

Returns
  • the property value in raw format

public final String getViewHtml ()

Returns the view HTML for this renderable application property.

Returns
  • a String containing the view HTML

public final void setValue (String value)

Sets the property value.

Parameters
value a String containing the property value

Protected Methods

protected final boolean isBTF ()

Returns a boolean indicating whether JIRA is running in BTF.

Returns
  • a boolean indicating whether JIRA is running in BTF
See Also

protected final boolean isOnDemand ()

Returns a boolean indicating whether JIRA is running in OnDemand.

Returns
  • a boolean indicating whether JIRA is running in OnDemand
See Also