Uses of Class
hudson.scm.RepositoryBrowser
-
Packages that use RepositoryBrowser Package Description hudson.scm Jenkins's interface with source code management systems.jenkins.model -
-
Uses of RepositoryBrowser in hudson.scm
Fields in hudson.scm with type parameters of type RepositoryBrowser Modifier and Type Field Description static List<Descriptor<RepositoryBrowser<?>>>
RepositoryBrowsers. LIST
Deprecated.as of 1.286.Class<? extends RepositoryBrowser>
SCMDescriptor. repositoryBrowser
If this SCM has correspondingRepositoryBrowser
, that type.Methods in hudson.scm with type parameters of type RepositoryBrowser Modifier and Type Method Description static <T extends RepositoryBrowser>
TRepositoryBrowsers. createInstance(Class<T> type, org.kohsuke.stapler.StaplerRequest req, String fieldName)
Deprecated.since 2008-06-19.static <T extends RepositoryBrowser>
TRepositoryBrowsers. createInstance(Class<T> type, org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject parent, String fieldName)
Creates an instance ofRepositoryBrowser
from a form submission.Methods in hudson.scm that return RepositoryBrowser Modifier and Type Method Description RepositoryBrowser<?>
ChangeLogSet. getBrowser()
RepositoryBrowser<?>
SCM. getBrowser()
Returns theRepositoryBrowser
for files controlled by thisSCM
.RepositoryBrowser<?>
SCM. getEffectiveBrowser()
Returns the applicableRepositoryBrowser
for files controlled by thisSCM
.RepositoryBrowser<?>
SCM. guessBrowser()
Try to guess how a repository browser should be configured, based on URLs and the like.Methods in hudson.scm that return types with arguments of type RepositoryBrowser Modifier and Type Method Description static DescriptorExtensionList<RepositoryBrowser<?>,Descriptor<RepositoryBrowser<?>>>
RepositoryBrowser. all()
Returns all the registeredRepositoryBrowser
descriptors.static DescriptorExtensionList<RepositoryBrowser<?>,Descriptor<RepositoryBrowser<?>>>
RepositoryBrowser. all()
Returns all the registeredRepositoryBrowser
descriptors.static List<Descriptor<RepositoryBrowser<?>>>
RepositoryBrowsers. filter(Class<? extends RepositoryBrowser> t)
Only returns thoseRepositoryBrowser
descriptors that extend from the given type.List<Descriptor<RepositoryBrowser<?>>>
SCMDescriptor. getBrowserDescriptors()
Returns the list ofRepositoryBrowser
Descriptor
that can be used with this SCM.Methods in hudson.scm with parameters of type RepositoryBrowser Modifier and Type Method Description ChangeLogSet<? extends ChangeLogSet.Entry>
ChangeLogParser. parse(Run build, RepositoryBrowser<?> browser, File changelogFile)
ChangeLogSet<? extends ChangeLogSet.Entry>
NullChangeLogParser. parse(Run build, RepositoryBrowser<?> browser, File changelogFile)
Method parameters in hudson.scm with type arguments of type RepositoryBrowser Modifier and Type Method Description static List<Descriptor<RepositoryBrowser<?>>>
RepositoryBrowsers. filter(Class<? extends RepositoryBrowser> t)
Only returns thoseRepositoryBrowser
descriptors that extend from the given type.Constructors in hudson.scm with parameters of type RepositoryBrowser Constructor Description ChangeLogSet(Run<?,?> run, RepositoryBrowser<?> browser)
Constructor parameters in hudson.scm with type arguments of type RepositoryBrowser Constructor Description SCMDescriptor(Class<? extends RepositoryBrowser> repositoryBrowser)
Infers the type of the correspondingSCM
from the outer class. -
Uses of RepositoryBrowser in jenkins.model
Methods in jenkins.model that return types with arguments of type RepositoryBrowser Modifier and Type Method Description Descriptor<RepositoryBrowser<?>>
Jenkins. getRepositoryBrowser(String shortClassName)
Gets the repository browser descriptor by name.
-