|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ItemGroup | |
---|---|
hudson | |
hudson.matrix | Matrix project |
hudson.maven | Maven support. |
hudson.model | Core object model that are bound to URLs via stapler, rooted at Hudson. |
hudson.security | Security-related code. |
hudson.tasks | Built-in Builders and Publishers that perform the actual heavy-lifting of a build. |
hudson.tasks.test | Defines contracts that need to be implemented by a test reporting action (such as the built-in JUnit one). |
jenkins.model | |
org.jvnet.hudson.test | Test harness for Jenkins and its plugins. |
Uses of ItemGroup in hudson |
---|
Methods in hudson with parameters of type ItemGroup | |
---|---|
static List<TopLevelItem> |
Functions.getAllTopLevelItems(ItemGroup root)
Gets all the TopLevelItem s recursively in the ItemGroup tree. |
static String |
Functions.getRelativeDisplayNameFrom(Item p,
ItemGroup g)
Gets the relative display name to the given item from the specified group. |
Uses of ItemGroup in hudson.matrix |
---|
Classes in hudson.matrix that implement ItemGroup | |
---|---|
class |
MatrixProject
Job that allows you to run multiple different configurations
from a single setting. |
Methods in hudson.matrix with parameters of type ItemGroup | |
---|---|
MatrixProject |
MatrixProject.DescriptorImpl.newInstance(ItemGroup parent,
String name)
|
void |
MatrixConfiguration.onLoad(ItemGroup<? extends Item> parent,
String name)
|
void |
MatrixProject.onLoad(ItemGroup<? extends Item> parent,
String name)
|
Constructors in hudson.matrix with parameters of type ItemGroup | |
---|---|
MatrixProject(ItemGroup parent,
String name)
|
Uses of ItemGroup in hudson.maven |
---|
Classes in hudson.maven that implement ItemGroup | |
---|---|
class |
MavenModuleSet
Group of MavenModule s. |
Methods in hudson.maven with parameters of type ItemGroup | |
---|---|
MavenModuleSet |
MavenModuleSet.DescriptorImpl.newInstance(ItemGroup parent,
String name)
|
void |
MavenModule.onLoad(ItemGroup<? extends Item> parent,
String name)
|
void |
MavenModuleSet.onLoad(ItemGroup<? extends Item> parent,
String name)
|
Constructors in hudson.maven with parameters of type ItemGroup | |
---|---|
AbstractMavenProject(ItemGroup parent,
String name)
|
|
MavenModuleSet(ItemGroup parent,
String name)
|
Uses of ItemGroup in hudson.model |
---|
Subinterfaces of ItemGroup in hudson.model | |
---|---|
interface |
ModifiableItemGroup<T extends Item>
ItemGroup that is a general purpose container, which allows users and the rest of the program
to create arbitrary items into it. |
Classes in hudson.model that implement ItemGroup | |
---|---|
class |
AbstractCIBase
|
class |
Hudson
|
Methods in hudson.model that return ItemGroup | |
---|---|
ItemGroup<? extends TopLevelItem> |
ViewGroup.getItemGroup()
Returns the ItemGroup from which the views in this group should render items. |
ItemGroup<? extends TopLevelItem> |
TreeView.getItemGroup()
|
ItemGroup<? extends TopLevelItem> |
MyViewsProperty.getItemGroup()
|
ItemGroup<? extends TopLevelItem> |
View.getOwnerItemGroup()
Backward-compatible way of getting getOwner().getItemGroup() |
ItemGroup<? extends Item> |
Item.getParent()
Gets the parent that contains this item. |
ItemGroup |
AbstractItem.getParent()
This bridge method is to maintain binary compatibility with Item.getParent() . |
Methods in hudson.model with parameters of type ItemGroup | ||
---|---|---|
static String |
Items.computeRelativeNamesAfterRenaming(String oldFullName,
String newFullName,
String relativeNames,
ItemGroup context)
Compute the relative name of list of items after a rename occurred. |
|
static AbstractProject |
AbstractProject.findNearest(String name,
ItemGroup context)
Finds a AbstractProject whose name (when referenced from the specified context) is closest to the given name. |
|
static
|
Items.fromNameList(ItemGroup context,
String list,
Class<T> type)
Does the opposite of Items.toNameList(Collection) . |
|
static
|
Items.getAllItems(ItemGroup root,
Class<T> type)
Gets all the Item s recursively in the ItemGroup tree
and filter them by the given type. |
|
static String |
Items.getCanonicalName(ItemGroup context,
String path)
Computes the canonical full name of a relative path in an ItemGroup context, handling relative
positions ".." and "." as absolute path starting with "/". |
|
String |
Item.getRelativeNameFrom(ItemGroup g)
Gets the relative name to this item from the specified group. |
|
String |
AbstractItem.getRelativeNameFrom(ItemGroup p)
|
|
String |
AbstractItem.getRelativeNameFromGroup(ItemGroup p)
This method only exists to disambiguate AbstractItem.getRelativeNameFrom(ItemGroup) and AbstractItem.getRelativeNameFrom(Item) |
|
static Item |
Items.load(ItemGroup parent,
File dir)
Loads a Item from a config file. |
|
static
|
ItemGroupMixIn.loadChildren(ItemGroup parent,
File modulesDir,
Function1<? extends K,? super V> key)
Loads all the child Item s. |
|
abstract TopLevelItem |
TopLevelItemDescriptor.newInstance(ItemGroup parent,
String name)
Creates a new TopLevelItem for the specified parent. |
|
FreeStyleProject |
FreeStyleProject.DescriptorImpl.newInstance(ItemGroup parent,
String name)
|
|
static
|
AutoCompletionCandidates.ofJobNames(Class<T> type,
String value,
Item self,
ItemGroup container)
Auto-completes possible job names. |
|
void |
ItemVisitor.onItemGroup(ItemGroup<?> group)
Visits an ItemGroup by visits the member items. |
|
void |
Project.onLoad(ItemGroup<? extends Item> parent,
String name)
|
|
void |
Item.onLoad(ItemGroup<? extends Item> parent,
String name)
Called right after when a Item is loaded from disk. |
|
void |
Job.onLoad(ItemGroup<? extends Item> parent,
String name)
|
|
void |
ViewJob.onLoad(ItemGroup<? extends Item> parent,
String name)
|
|
void |
AbstractProject.onLoad(ItemGroup<? extends Item> parent,
String name)
|
|
void |
AbstractItem.onLoad(ItemGroup<? extends Item> parent,
String name)
Called right after when a Item is loaded from disk. |
Constructors in hudson.model with parameters of type ItemGroup | |
---|---|
AbstractItem(ItemGroup parent,
String name)
|
|
AbstractProject(ItemGroup parent,
String name)
|
|
FreeStyleProject(ItemGroup parent,
String name)
|
|
ItemGroupMixIn(ItemGroup parent,
AccessControlled acl)
|
|
Job(ItemGroup parent,
String name)
|
|
Project(ItemGroup parent,
String name)
Creates a new project. |
|
ViewJob(ItemGroup parent,
String name)
|
Uses of ItemGroup in hudson.security |
---|
Methods in hudson.security with parameters of type ItemGroup | |
---|---|
SidACL |
ProjectMatrixAuthorizationStrategy.getACL(ItemGroup g)
|
Uses of ItemGroup in hudson.tasks |
---|
Methods in hudson.tasks with parameters of type ItemGroup | |
---|---|
AutoCompletionCandidates |
BuildTrigger.DescriptorImpl.doAutoCompleteChildProjects(String value,
Item self,
ItemGroup container)
|
List<AbstractProject> |
BuildTrigger.getChildProjects(ItemGroup base)
|
Uses of ItemGroup in hudson.tasks.test |
---|
Methods in hudson.tasks.test with parameters of type ItemGroup | |
---|---|
AutoCompletionCandidates |
AggregatedTestResultPublisher.DescriptorImpl.doAutoCompleteJobs(String value,
Item self,
ItemGroup container)
|
Uses of ItemGroup in jenkins.model |
---|
Subinterfaces of ItemGroup in jenkins.model | |
---|---|
interface |
ModifiableTopLevelItemGroup
A ModifiableItemGroup to manage TopLevelItem ,
including copying, creating from descriptor and from XML. |
Classes in jenkins.model that implement ItemGroup | |
---|---|
class |
Jenkins
Root object of the system. |
Methods in jenkins.model with parameters of type ItemGroup | ||
---|---|---|
Item |
Jenkins.getItem(String pathName,
ItemGroup context)
Gets the item by its path name from the given context |
|
|
Jenkins.getItem(String pathName,
ItemGroup context,
Class<T> type)
|
Constructors in jenkins.model with parameters of type ItemGroup | |
---|---|
AbstractTopLevelItem(ItemGroup parent,
String name)
|
Uses of ItemGroup in org.jvnet.hudson.test |
---|
Classes in org.jvnet.hudson.test that implement ItemGroup | |
---|---|
class |
MockFolder
Minimal implementation of a modifiable item group akin to the CloudBees Folders plugin. |
Methods in org.jvnet.hudson.test that return ItemGroup | |
---|---|
ItemGroup<? extends TopLevelItem> |
MockFolder.getItemGroup()
|
Methods in org.jvnet.hudson.test with parameters of type ItemGroup | |
---|---|
TopLevelItem |
MockFolder.DescriptorImpl.newInstance(ItemGroup parent,
String name)
|
void |
MockFolder.onLoad(ItemGroup<? extends Item> parent,
String name)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |