java.lang.Object | |
↳ | com.atlassian.jira.issue.fields.renderer.DefaultHackyFieldRendererRegistry |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Given the field, return the default renderer type that can be used to initilize the field layout item for this
field.
| |||||||||||
The set of renderer types for the field.
| |||||||||||
If this method returns true then users will be able to choose renderers in the field configuration for the field.
|
[Expand]
Inherited Methods | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||
![]()
|
Given the field, return the default renderer type that can be used to initilize the field layout item for this
field. The return value must be in the set returned by getRendererTypes(com.atlassian.jira.issue.fields.OrderableField)
.
You should only call this if shouldOverrideDefaultRenderers(com.atlassian.jira.issue.fields.OrderableField)
returns true, otherwise
this will return null.
field | the field |
---|
The set of renderer types for the field. Should only be used if shouldOverrideDefaultRenderers(com.atlassian.jira.issue.fields.OrderableField)
returns true.
field | the field |
---|
If this method returns true then users will be able to choose renderers in the field configuration for the field.
The set of renders to choose from are determined by the result of getRendererTypes(com.atlassian.jira.issue.fields.OrderableField)
and will override any pluggable renderer types defined.
RenderableField
interface (or that do but but return false
for isRenderable()
, e.g., custom
fields) can still return true here to signify that they should have the option to choose renderers.field | the field |
---|