Codota Logo
DescribableList.addAllTo
Code IndexAdd Codota to your IDE (free)

How to use
addAllTo
method
in
hudson.util.DescribableList

Best Java code snippets using hudson.util.DescribableList.addAllTo (Showing top 5 results out of 315)

  • Common ways to obtain DescribableList
private void myMethod () {
DescribableList d =
  • Codota IconBuildableItemWithBuildWrappers biwbw;biwbw.getBuildWrappersList()
  • Codota IconSaveable owner;new DescribableList<ToolProperty<?>, ToolPropertyDescriptor>(owner)
  • Codota IconListView listView;new DescribableList<ViewJobFilter, Descriptor<ViewJobFilter>>(listView)
  • Smart code suggestions by Codota
}
origin: org.jenkins-ci.plugins/ivy

/**
 * Creates a list of {@link Publisher}s to be used for a build of this project.
 */
protected final List<Publisher> createModulePublishers() {
  List<Publisher> modulePublisherList = new ArrayList<Publisher>();
  getPublishers().addAllTo(modulePublisherList);
  if (!getParent().isAggregatorStyleBuild()) {
    getParent().getPublishers().addAllTo(modulePublisherList);
  }
  return modulePublisherList;
}
origin: org.jvnet.hudson.plugins/ivy

/**
 * Creates a list of {@link Publisher}s to be used for a build of this project.
 */
protected final List<Publisher> createModulePublishers() {
  List<Publisher> modulePublisherList = new ArrayList<Publisher>();
  getPublishers().addAllTo(modulePublisherList);
  if (!getParent().isAggregatorStyleBuild()) {
    getParent().getPublishers().addAllTo(modulePublisherList);
  }
  return modulePublisherList;
}
origin: org.hudsonci.plugins/ivy

/**
 * Creates a list of {@link Publisher}s to be used for a build of this project.
 */
protected final List<Publisher> createModulePublishers() {
  List<Publisher> modulePublisherList = new ArrayList<Publisher>();
  getPublishers().addAllTo(modulePublisherList);
  if (!getParent().isAggregatorStyleBuild()) {
    getParent().getPublishers().addAllTo(modulePublisherList);
  }
  return modulePublisherList;
}
origin: jenkinsci/maven-plugin

/**
 * Creates a list of {@link MavenReporter}s to be used for a build of this project.
 */
protected List<MavenReporter> createReporters() {
  Set<MavenReporter> reporterSet = new TreeSet<>(COMPARATOR);
  getReporters().addAllTo( reporterSet );
  getParent().getReporters().addAllTo(reporterSet);
  
  for (MavenReporterDescriptor d : MavenReporterDescriptor.all()) {
    if(getReporters().contains(d))
      continue;   // already configured
    MavenReporter auto = d.newAutoInstance(this);
    if(auto!=null)
      reporterSet.add(auto);
  }
  return new ArrayList<MavenReporter>(reporterSet);
}
origin: org.jvnet.hudson.main/maven-plugin

/**
 * Creates a list of {@link MavenReporter}s to be used for a build of this project.
 */
protected List<MavenReporter> createReporters() {
  List<MavenReporter> reporterList = new ArrayList<MavenReporter>();
  getReporters().addAllTo(reporterList);
  getParent().getReporters().addAllTo(reporterList);
  for (MavenReporterDescriptor d : MavenReporterDescriptor.all()) {
    if(getReporters().contains(d))
      continue;   // already configured
    MavenReporter auto = d.newAutoInstance(this);
    if(auto!=null)
      reporterList.add(auto);
  }
  return reporterList;
}

hudson.utilDescribableListaddAllTo

Popular methods of DescribableList

  • get
  • toList
  • add
  • <init>
  • rebuild
  • remove
  • setOwner
  • getAll
  • toMap
    Creates a detached map from the current snapshot of the data, keyed from a descriptor to an instance
  • buildDependencyGraph
    Picks up DependecyDeclarers and allow it to build dependencies.
  • rebuildHetero
    Rebuilds the list by creating a fresh instances from the submitted form. This version works with the
  • addAll
  • rebuildHetero,
  • addAll,
  • isEmpty,
  • replace,
  • replaceBy,
  • removeAll,
  • size,
  • onModified,
  • clear

Popular in Java

  • Running tasks concurrently on multiple threads
  • putExtra (Intent)
  • getApplicationContext (Context)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Hashtable (java.util)
    Hashtable is a synchronized implementation of Map. All optional operations are supported.Neither key
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • DataSource (javax.sql)
    A factory for connections to the physical data source that this DataSource object represents. An alt
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now