com.atlassian.jira.plugin.issuetabpanel
Interface IssueTabPanel3

All Known Implementing Classes:
AbstractIssueTabPanel3, CommentTabPanel, IssueTabPanel3Adaptor

@PublicSpi
public interface IssueTabPanel3

This is the SPI for the issue-tabpanel JIRA module type. Issue tab panels allow plugins to display their content in the JIRA view issue screen. Examples of issue tab panels include the "Comment", "Work Log", and the "Source" tabs.

This plugin type is documented online.

Since:
v6.0
See Also:
IssueTabPanel, IssueTabPanel2

Method Summary
 List<IssueAction> getActions(GetActionsRequest request)
          Returns a list of issue actions in the order that you want them to be displayed.
 void init(IssueTabPanelModuleDescriptor descriptor)
           
 boolean showPanel(ShowPanelRequest request)
          Indicates whether this tab should be shown on a given issue.
 

Method Detail

init

void init(IssueTabPanelModuleDescriptor descriptor)

showPanel

boolean showPanel(ShowPanelRequest request)
Indicates whether this tab should be shown on a given issue.

Parameters:
request - a ShowPanelRequest
Returns:
a ShowPanelRequest indicating whether to show the panel or not

getActions

List<IssueAction> getActions(GetActionsRequest request)
Returns a list of issue actions in the order that you want them to be displayed. This method will only be called if showPanel returned true for a given context. The request parameter contains the user that is viewing the tab, information as to whether the tab is being loaded using an AJAX request, and so on.

Note that for the 'all' tab, the returned actions will be displayed in order according to the value returned by IssueAction.getTimePerformed().

Parameters:
request - a GetActionsRequest
Returns:
the actions to display


Copyright © 2002-2013 Atlassian. All Rights Reserved.