Uses of Class
hudson.util.RunList

Packages that use RunList
hudson.model Core object model that are bound to URLs via stapler, rooted at Hudson
hudson.util Other miscellaneous utility code 
 

Uses of RunList in hudson.model
 

Fields in hudson.model declared as RunList
protected  RunList<?> BuildTimelineWidget.builds
           
 

Methods in hudson.model that return RunList
 RunList<RunT> Job.getBuilds()
          Gets the read-only view of all the builds.
 RunList User.getBuilds()
          Gets the list of Builds that include changes by this user, by the timestamp order.
 RunList Computer.getBuilds()
           
 RunList View.getBuilds()
           
 RunList<RunT> Job.getBuildsByTimestamp(long start, long end)
          Deprecated. as of 1.372. Should just do getBuilds().byTimestamp(s,e) to avoid code bloat in Job.
 RunList<RunT> Job.getNewBuilds()
          Gets the read-only view of the recent builds.
 

Constructors in hudson.model with parameters of type RunList
BuildTimelineWidget(RunList<?> builds)
           
 

Uses of RunList in hudson.util
 

Methods in hudson.util that return RunList
 RunList<R> RunList.byTimestamp(long start, long end)
          Filter the list by timestamp.
 RunList<R> RunList.failureOnly()
          Filter the list to non-successful builds only.
static
<R extends Run>
RunList<R>
RunList.fromRuns(Collection<? extends R> runs)
           
 RunList<R> RunList.limit(int n)
           
 RunList<R> RunList.newBuilds()
          Reduce the size of the list by only leaving relatively new ones.
 RunList<R> RunList.node(Node node)
          Filter the list to builds on a single node only
 RunList<R> RunList.regressionOnly()
          Filter the list to regression builds only.
 



Copyright © 2004-2013. All Rights Reserved.