Package jenkins.model
Interface ModelObjectWithChildren
- All Superinterfaces:
ModelObject
- All Known Implementing Classes:
AbstractProject
,AllView
,CloudSet
,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
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:
-
Method Summary
Modifier and TypeMethodDescriptiondoChildrenContextMenu
(org.kohsuke.stapler.StaplerRequest2 request, org.kohsuke.stapler.StaplerResponse2 response) Generates the context menu to list up all the children.doChildrenContextMenu
(org.kohsuke.stapler.StaplerRequest request, org.kohsuke.stapler.StaplerResponse response) Deprecated.Methods inherited from interface hudson.model.ModelObject
getDisplayName
-
Method Details
-
doChildrenContextMenu
default ModelObjectWithContextMenu.ContextMenu doChildrenContextMenu(org.kohsuke.stapler.StaplerRequest2 request, org.kohsuke.stapler.StaplerResponse2 response) throws Exception Generates the context menu to list up all the children.- Throws:
Exception
-
doChildrenContextMenu
@Deprecated @StaplerNotDispatchable default ModelObjectWithContextMenu.ContextMenu doChildrenContextMenu(org.kohsuke.stapler.StaplerRequest request, org.kohsuke.stapler.StaplerResponse response) throws Exception Deprecated.- Throws:
Exception
-
doChildrenContextMenu(StaplerRequest2, StaplerResponse2)