Package jenkins.model
Interface ModelObjectWithChildren
-
- All Superinterfaces:
ModelObject
- All Known Implementing Classes:
AbstractProject
,AllView
,ComputerSet
,FreeStyleProject
,Hudson
,Jenkins
,Job
,Label
,LabelAtom
,LabelExpression
,LabelExpression.And
,LabelExpression.Binary
,LabelExpression.Iff
,LabelExpression.Implies
,LabelExpression.Not
,LabelExpression.Or
,LabelExpression.Paren
,ListView
,LogRecorderManager
,MyView
,Project
,ProxyView
,View
,ViewJob
public interface ModelObjectWithChildren extends ModelObject
ModelObject
that has the children context menu in the breadcrumb.The children context menu is to show all the immediate children that this model object owns, thereby providing quicker navigation to ancestors' siblings in the breadcrumb.
- Since:
- 1.513
- Author:
- Kohsuke Kawaguchi
- See Also:
ModelObjectWithContextMenu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelObjectWithContextMenu.ContextMenu
doChildrenContextMenu(org.kohsuke.stapler.StaplerRequest request, org.kohsuke.stapler.StaplerResponse response)
Generates the context menu to list up all the children.-
Methods inherited from interface hudson.model.ModelObject
getDisplayName
-
-
-
-
Method Detail
-
doChildrenContextMenu
ModelObjectWithContextMenu.ContextMenu doChildrenContextMenu(org.kohsuke.stapler.StaplerRequest request, org.kohsuke.stapler.StaplerResponse response) throws Exception
Generates the context menu to list up all the children.- Throws:
Exception
-
-