Class FlowNodeViewColumn
java.lang.Object
hudson.model.AbstractDescribableImpl<FlowNodeViewColumn>
org.jenkinsci.plugins.workflow.visualization.table.FlowNodeViewColumn
- All Implemented Interfaces:
- ExtensionPoint,- Describable<FlowNodeViewColumn>
public class FlowNodeViewColumn
extends AbstractDescribableImpl<FlowNodeViewColumn>
implements ExtensionPoint
Extension point for adding a column to a table rendering of 
FlowNodes.
 
 This object must have the column.groovy. This view
 is called for each cell of this column. The FlowNode object
 is passed in the "node" variable. The view should render
 a <td> tag.
 This object may have an additional columnHeader.groovy. The default column header
 will render getColumnCaption().
- Since:
- 1.279
- Author:
- Kohsuke Kawaguchi
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from interface hudson.ExtensionPointExtensionPoint.LegacyInstancesAreScopedToHudson
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the name of the column that explains what this column means
- 
Constructor Details- 
FlowNodeViewColumnpublic FlowNodeViewColumn()
 
- 
- 
Method Details- 
getColumnCaptionReturns the name of the column that explains what this column means- Returns:
- The convention is to use capitalization like "Foo Bar Zot".
 
- 
getDescriptor- Specified by:
- getDescriptorin interface- Describable<FlowNodeViewColumn>
 
 
-