Uses of Class
hudson.ExtensionComponent
-
Packages that use ExtensionComponent Package Description hudson hudson.cli.declarative Code for supporting declarative CLI commands, which are annotated methods on model objects.hudson.tasks jenkins -
-
Uses of ExtensionComponent in hudson
Methods in hudson that return types with arguments of type ExtensionComponent Modifier and Type Method Description <T> Collection<ExtensionComponent<T>>
ExtensionFinder. _find(Class<T> type, Hudson hudson)
Deprecated.abstract <T> Collection<ExtensionComponent<T>>
ExtensionFinder. find(Class<T> type, Hudson jenkins)
Discover extensions of the given type.<U> Collection<ExtensionComponent<U>>
ExtensionFinder.GuiceFinder. find(Class<U> type, Hudson jenkins)
<T> Collection<ExtensionComponent<T>>
ExtensionFinder.Sezpoz. find(Class<T> type, Hudson jenkins)
<T> List<ExtensionComponent<T>>
ClassicPluginStrategy. findComponents(Class<T> type, Hudson hudson)
<T> List<ExtensionComponent<T>>
PluginStrategy. findComponents(Class<T> type, Hudson hudson)
Find components of the given type using the assigned strategy.List<ExtensionComponent<T>>
ExtensionList. getComponents()
Gets the same thing as the 'this' list represents, except asExtensionComponent
s.protected List<ExtensionComponent<D>>
DescriptorExtensionList. load()
Loading the descriptors in this case means filtering the descriptor from the masterExtensionList
.protected Collection<ExtensionComponent<D>>
DescriptorExtensionList. load(ExtensionComponentSet delta)
protected List<ExtensionComponent<T>>
ExtensionList. load()
Loads all the extensions.protected Collection<ExtensionComponent<T>>
ExtensionList. load(ExtensionComponentSet delta)
Picks up extensions that we care from the given list.protected List<ExtensionComponent<T>>
ExtensionList. sort(List<ExtensionComponent<T>> r)
If theExtensionList
implementation requires sorting extensions, override this method to do so.Methods in hudson with parameters of type ExtensionComponent Modifier and Type Method Description int
ExtensionComponent. compareTo(ExtensionComponent<T> that)
SortExtensionComponent
s in the descending order ofordinal()
.Method parameters in hudson with type arguments of type ExtensionComponent Modifier and Type Method Description protected List<ExtensionComponent<T>>
ExtensionList. sort(List<ExtensionComponent<T>> r)
If theExtensionList
implementation requires sorting extensions, override this method to do so.Constructor parameters in hudson with type arguments of type ExtensionComponent Constructor Description ExtensionList(Hudson hudson, Class<T> extensionType, CopyOnWriteArrayList<ExtensionComponent<T>> legacyStore)
Deprecated.as of 1.416 UseExtensionList(Jenkins, Class, CopyOnWriteArrayList)
ExtensionList(Jenkins jenkins, Class<T> extensionType, CopyOnWriteArrayList<ExtensionComponent<T>> legacyStore)
-
Uses of ExtensionComponent in hudson.cli.declarative
Methods in hudson.cli.declarative that return types with arguments of type ExtensionComponent Modifier and Type Method Description <T> Collection<ExtensionComponent<T>>
CLIRegisterer. find(Class<T> type, Hudson jenkins)
-
Uses of ExtensionComponent in hudson.tasks
Methods in hudson.tasks that return types with arguments of type ExtensionComponent Modifier and Type Method Description protected List<ExtensionComponent<Descriptor<Publisher>>>
Publisher.DescriptorExtensionListImpl. sort(List<ExtensionComponent<Descriptor<Publisher>>> r)
Methods in hudson.tasks with parameters of type ExtensionComponent Modifier and Type Method Description int
Publisher.DescriptorExtensionListImpl. compare(ExtensionComponent<Descriptor<Publisher>> lhs, ExtensionComponent<Descriptor<Publisher>> rhs)
Method parameters in hudson.tasks with type arguments of type ExtensionComponent Modifier and Type Method Description protected List<ExtensionComponent<Descriptor<Publisher>>>
Publisher.DescriptorExtensionListImpl. sort(List<ExtensionComponent<Descriptor<Publisher>>> r)
-
Uses of ExtensionComponent in jenkins
Methods in jenkins that return types with arguments of type ExtensionComponent Modifier and Type Method Description abstract <T> Collection<ExtensionComponent<T>>
ExtensionComponentSet. find(Class<T> type)
Discover extensions of the given type.Methods in jenkins with parameters of type ExtensionComponent Modifier and Type Method Description abstract <T> boolean
ExtensionFilter. allows(Class<T> type, ExtensionComponent<T> component)
Checks if a newly discovered extension is allowed to participate into Jenkins.static <T> boolean
ExtensionFilter. isAllowed(Class<T> type, ExtensionComponent<T> component)
-