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
FlowNode
s.
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 Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the column that explains what this column means
-
Constructor Details
-
FlowNodeViewColumn
public FlowNodeViewColumn()
-
-
Method Details
-
getColumnCaption
Returns 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:
getDescriptor
in interfaceDescribable<FlowNodeViewColumn>
- Overrides:
getDescriptor
in classAbstractDescribableImpl<FlowNodeViewColumn>
-