congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
DescribableList.addAllTo
Code IndexAdd Tabnine 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)

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

  • Updating database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • setRequestProperty (URLConnection)
  • putExtra (Intent)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Notification (javax.management)
  • JOptionPane (javax.swing)
  • 21 Best IntelliJ Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now