com.pmease.quickbuild.extensionpoint
Interface BuildSummaryContribution

All Known Implementing Classes:
ReportSummaryContribution

public interface BuildSummaryContribution

This extension point contributes panels to the build summary popup. Build summary popup will be displayed if mouse is hovered over the more... link of a build on system dash board or build history screen.


Method Summary
 int getOrder()
          Get order of this contribution.
 java.util.List<PanelCreator> getPanelCreators()
          Get list of panel creators which can be used to create panels contributing to the build summary popup.
 

Method Detail

getPanelCreators

java.util.List<PanelCreator> getPanelCreators()
Get list of panel creators which can be used to create panels contributing to the build summary popup. Please note that method Context.getBuild() will return null at this time since build summary popup is displayed in system dash board and build history screen. Instead, you should pass the build parameter to wherever needs the build object.

Parameters:
build - the build to whose summary popup the panels will be contributed to.
Returns:

getOrder

int getOrder()
Get order of this contribution. This value will be used to determine panel orders on the build summary popup.

Returns:


Copyright © 2005-2010 PMEase Inc. All Rights Reserved.