Uses of Class
hudson.model.AbstractProject

Packages that use AbstractProject
hudson   
hudson.cli Server-side CLI commands for Hudson. 
hudson.cli.handlers OptionHandler implementations for Hudson. 
hudson.fsp   
hudson.matrix Matrix project 
hudson.maven Maven support. 
hudson.model Core object model that are bound to URLs via stapler, rooted at Hudson
hudson.model.listeners Listener interfaces for various events that occur inside the server. 
hudson.model.queue   
hudson.os.solaris Solaris specific features of Hudson. 
hudson.scm Hudson's interface with source code management systems. 
hudson.security Security-related code. 
hudson.tasks Built-in Builders and Publishers that perform the actual heavy-lifting of a build. 
hudson.tasks.junit Model objects that represent JUnit test reports. 
hudson.tasks.test Defines contracts that need to be implemented by a test reporting action (such as the built-in JUnit one). 
hudson.triggers Built-in Triggers that run periodically to kick a new build. 
hudson.util Other miscellaneous utility code 
jenkins.model   
jenkins.scm   
org.jvnet.hudson.test Test harness for Jenkins and its plugins. 
 

Uses of AbstractProject in hudson
 

Methods in hudson with parameters of type AbstractProject
abstract  void FileSystemProvisioner.discardWorkspace(AbstractProject<?,?> project, FilePath ws)
          When a project is deleted, this method is called to undo the effect of FileSystemProvisioner.prepareWorkspace(AbstractBuild, FilePath, TaskListener).
 void FileSystemProvisioner.Default.discardWorkspace(AbstractProject<?,?> project, FilePath ws)
           
static List<Descriptor<Builder>> Functions.getBuilderDescriptors(AbstractProject<?,?> project)
           
static List<Descriptor<BuildWrapper>> Functions.getBuildWrapperDescriptors(AbstractProject<?,?> project)
           
static List<Descriptor<Publisher>> Functions.getPublisherDescriptors(AbstractProject<?,?> project)
           
static List<SCMDescriptor<?>> Functions.getSCMDescriptors(AbstractProject<?,?> project)
           
 void DependencyRunner.ProjectRunnable.run(AbstractProject p)
           
 

Uses of AbstractProject in hudson.cli
 

Fields in hudson.cli declared as AbstractProject
 AbstractProject<?,?> UpdateJobCommand.job
           
 AbstractProject<?,?> AbstractBuildRangeCommand.job
           
 AbstractProject<?,?> SetBuildDescriptionCommand.job
           
 AbstractProject<?,?> SetBuildDisplayNameCommand.job
           
 AbstractProject<?,?> ConsoleCommand.job
           
 AbstractProject<?,?> GetJobCommand.job
           
 AbstractProject<?,?> BuildCommand.job
           
 

Uses of AbstractProject in hudson.cli.handlers
 

Constructor parameters in hudson.cli.handlers with type arguments of type AbstractProject
AbstractProjectOptionHandler(org.kohsuke.args4j.CmdLineParser parser, org.kohsuke.args4j.OptionDef option, org.kohsuke.args4j.spi.Setter<AbstractProject> setter)
           
 

Uses of AbstractProject in hudson.fsp
 

Methods in hudson.fsp with parameters of type AbstractProject
protected  PollingResult WorkspaceSnapshotSCM.compareRemoteRevisionWith(AbstractProject project, Launcher launcher, FilePath workspace, TaskListener listener, SCMRevisionState baseline)
           
 

Uses of AbstractProject in hudson.matrix
 

Subclasses of AbstractProject in hudson.matrix
 class MatrixConfiguration
          One configuration of MatrixProject.
 class MatrixProject
          Job that allows you to run multiple different configurations from a single setting.
 

Methods in hudson.matrix with parameters of type AbstractProject
 Fingerprint.RangeSet MatrixBuild.getDownstreamRelationship(AbstractProject that)
           
 

Uses of AbstractProject in hudson.maven
 

Classes in hudson.maven with type parameters of type AbstractProject
 class AbstractMavenProject<P extends AbstractProject<P,R>,R extends AbstractBuild<P,R>>
          Common part between MavenModule and MavenModuleSet.
 

Subclasses of AbstractProject in hudson.maven
 class AbstractMavenProject<P extends AbstractProject<P,R>,R extends AbstractBuild<P,R>>
          Common part between MavenModule and MavenModuleSet.
 class MavenModule
          Job that builds projects based on Maven2.
 class MavenModuleSet
          Group of MavenModules.
 

Fields in hudson.maven declared as AbstractProject
 AbstractProject<?,?> MavenProbeAction.owner
           
 

Methods in hudson.maven that return AbstractProject
 AbstractProject<?,?> MavenModuleSet.asProject()
           
 

Methods in hudson.maven with parameters of type AbstractProject
static hudson.maven.MavenEmbedder MavenUtil.createEmbedder(TaskListener listener, AbstractProject<?,?> project, String profiles)
          This version tries to infer mavenHome by looking at a project.
 Fingerprint.RangeSet MavenModuleSetBuild.getDownstreamRelationship(AbstractProject that)
           
 

Method parameters in hudson.maven with type arguments of type AbstractProject
 boolean MavenTestDataPublisher.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 boolean RedeployPublisher.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 

Constructors in hudson.maven with parameters of type AbstractProject
AbstractMavenProject.MavenModuleDependency(AbstractMavenProject<?,?> upstream, AbstractProject<?,?> downstream)
           
 

Uses of AbstractProject in hudson.model
 

Classes in hudson.model with type parameters of type AbstractProject
 class AbstractBuild<P extends AbstractProject<P,R>,R extends AbstractBuild<P,R>>
          Base implementation of Runs that build software.
 class AbstractProject<P extends AbstractProject<P,R>,R extends AbstractBuild<P,R>>
          Base implementation of Jobs that build software.
 

Subclasses of AbstractProject in hudson.model
 class FreeStyleProject
          Free-style software project.
 class Project<P extends Project<P,B>,B extends Build<P,B>>
          Buildable software project.
 

Fields in hudson.model declared as AbstractProject
 AbstractProject AbstractBuild.DependencyChange.project
          The dependency project.
 AbstractProject<?,?> AbstractProject.BecauseOfDownstreamBuildInProgress.up
           
 AbstractProject<?,?> AbstractProject.BecauseOfUpstreamBuildInProgress.up
           
 

Fields in hudson.model with type parameters of type AbstractProject
static AlternativeUiTextProvider.Message<AbstractProject> AbstractProject.BUILD_NOW_TEXT
          Replaceable "Build Now" text.
 

Methods in hudson.model that return AbstractProject
 AbstractProject<?,?> Project.asProject()
           
 AbstractProject<?,?> BuildableItemWithBuildWrappers.asProject()
          BuildableItemWithBuildWrappers needs to be an instance of AbstractProject.
 AbstractProject<?,?> SCMedItem.asProject()
          SCMedItem needs to be an instance of AbstractProject.
static AbstractProject AbstractProject.findNearest(String name)
          Finds a AbstractProject that has the name closest to the given name.
static AbstractProject AbstractProject.findNearest(String name, ItemGroup context)
          Finds a AbstractProject whose name (when referenced from the specified context) is closest to the given name.
 AbstractProject AbstractProject.getBuildingDownstream()
          Returns the project if any of the downstream project is either building, waiting, pending or buildable.
 AbstractProject AbstractProject.getBuildingUpstream()
          Returns the project if any of the upstream project is either building or is in the queue.
 AbstractProject DependencyGraph.Dependency.getDownstreamProject()
           
 AbstractProject Fingerprint.BuildPtr.getJob()
          Gets the Job that this pointer points to, or null if such a job no longer exists.
 AbstractProject<?,?> ParametersDefinitionProperty.getOwner()
           
 AbstractProject View.UserInfo.getProject()
           
 AbstractProject<?,?> ParametersDefinitionProperty.getProject()
           
 AbstractProject<?,?> AbstractProject.getRootProject()
          Gets the nearest ancestor TopLevelItem that's also an AbstractProject.
 AbstractProject DependencyGraph.Dependency.getUpstreamProject()
           
static AbstractProject AbstractProject.resolveForCLI(String name)
          Used for CLI binding.
 

Methods in hudson.model that return types with arguments of type AbstractProject
 List<AbstractProject> AbstractProject.getBuildTriggerUpstreamProjects()
          Returns only those upstream projects that defines BuildTrigger to this project.
 Map<AbstractProject,AbstractBuild.DependencyChange> AbstractBuild.getDependencyChanges(AbstractBuild from)
          Gets the changes in the dependency between the given build and this build.
 List<AbstractProject> DependencyGraph.getDownstream(AbstractProject p)
          Gets all the immediate downstream projects (IOW forward edges) of the given project.
 Map<AbstractProject,Fingerprint.RangeSet> AbstractBuild.getDownstreamBuilds()
          Gets the downstream builds of this build, which are the builds of the downstream projects that use artifacts of this build.
 List<AbstractProject> AbstractProject.getDownstreamProjects()
          Gets the other AbstractProjects that should be built when a build of this project is completed.
 Set<AbstractProject<?,?>> User.getProjects()
          Gets all the AbstractProjects that this user has committed to.
 List<AbstractProject> Computer.getTiedJobs()
          Returns projects that are tied on this node.
 List<AbstractProject> Label.getTiedJobs()
          Returns projects that are tied on this node.
 Set<AbstractProject> DependencyGraph.getTransitiveDownstream(AbstractProject src)
          Gets all the direct and indirect downstream dependencies of the given project.
 Set<AbstractProject> AbstractProject.getTransitiveDownstreamProjects()
          Gets all the downstream projects including transitive downstream projects.
 Set<AbstractProject> DependencyGraph.getTransitiveUpstream(AbstractProject src)
          Gets all the direct and indirect upstream dependencies of the given project.
 Map<AbstractProject,Integer> AbstractBuild.getTransitiveUpstreamBuilds()
          Works like AbstractBuild.getUpstreamBuilds() but also includes all the transitive dependencies as well.
 Set<AbstractProject> AbstractProject.getTransitiveUpstreamProjects()
          Gets all the upstream projects including transitive upstream projects.
 List<AbstractProject> DependencyGraph.getUpstream(AbstractProject p)
          Gets all the immediate upstream projects (IOW backward edges) of the given project.
 Map<AbstractProject,Integer> AbstractBuild.getUpstreamBuilds()
          Gets the upstream builds of this build, which are the builds of the upstream projects whose artifacts feed into this build.
 List<AbstractProject> AbstractProject.getUpstreamProjects()
           
 

Methods in hudson.model with parameters of type AbstractProject
 boolean Queue.add(AbstractProject p)
          Deprecated. as of 1.311 Use Queue.schedule(AbstractProject)
 boolean Queue.add(AbstractProject p, int quietPeriod)
          Deprecated. as of 1.311 Use Queue.schedule(Task, int)
 void DependencyGraph.addDependency(AbstractProject upstream, AbstractProject downstream)
          Deprecated. since 1.341; use DependencyGraph.addDependency(Dependency)
 void DependencyGraph.addDependency(AbstractProject upstream, AbstractProject downstream)
          Deprecated. since 1.341; use DependencyGraph.addDependency(Dependency)
 void DependencyGraph.addDependency(AbstractProject upstream, Collection<? extends AbstractProject> downstream)
          Deprecated. since 1.341
 void DependencyGraph.addDependency(Collection<? extends AbstractProject> upstream, AbstractProject downstream)
          Deprecated. since 1.341
 void DependencyGraph.addDependencyDeclarers(AbstractProject upstream, Collection<?> possibleDependecyDeclarers)
          Lists up DependencyDeclarer from the collection and let them builds dependencies.
 void WorkspaceListener.afterDelete(AbstractProject project)
          Called after a workspace is deleted successfully.
static void BuildAuthorizationToken.checkPermission(AbstractProject project, BuildAuthorizationToken token, org.kohsuke.stapler.StaplerRequest req, org.kohsuke.stapler.StaplerResponse rsp)
          Deprecated.  
 int DependencyGraph.compare(AbstractProject o1, AbstractProject o2)
          Compare to Projects based on the topological order defined by this Dependency Graph
 int DependencyGraph.compare(AbstractProject o1, AbstractProject o2)
          Compare to Projects based on the topological order defined by this Dependency Graph
abstract  Collection<? extends Action> TransientProjectActionFactory.createFor(AbstractProject target)
          Creates actions for the given project.
 List<SCMCheckoutStrategyDescriptor> AbstractProject.AbstractProjectDescriptor.getApplicableSCMCheckoutStrategyDescriptors(AbstractProject p)
           
 List<AbstractProject> DependencyGraph.getDownstream(AbstractProject p)
          Gets all the immediate downstream projects (IOW forward edges) of the given project.
 Iterable<AbstractBuild<?,?>> AbstractBuild.getDownstreamBuilds(AbstractProject<?,?> that)
          Works like AbstractBuild.getDownstreamRelationship(AbstractProject) but returns the actual build objects, in ascending order.
 List<DependencyGraph.Dependency> DependencyGraph.getDownstreamDependencies(AbstractProject p)
           
 Fingerprint.RangeSet AbstractBuild.getDownstreamRelationship(AbstractProject that)
          Gets the dependency relationship from this build (as the source) and that project (as the sink.)
 Collection<Action> ParametersDefinitionProperty.getJobActions(AbstractProject<?,?> job)
           
 Action JobProperty.getProjectAction(AbstractProject<?,?> project)
           
 Collection<? extends Action> JobProperty.getProjectActions(AbstractProject<?,?> project)
           
 SortedMap<Integer,Fingerprint.RangeSet> AbstractProject.getRelationship(AbstractProject that)
          Gets the dependency relationship map between this project (as the source) and that project (as the sink.)
 Set<AbstractProject> DependencyGraph.getTransitiveDownstream(AbstractProject src)
          Gets all the direct and indirect downstream dependencies of the given project.
 Set<AbstractProject> DependencyGraph.getTransitiveUpstream(AbstractProject src)
          Gets all the direct and indirect upstream dependencies of the given project.
 List<AbstractProject> DependencyGraph.getUpstream(AbstractProject p)
          Gets all the immediate upstream projects (IOW backward edges) of the given project.
 List<DependencyGraph.Dependency> DependencyGraph.getUpstreamDependencies(AbstractProject p)
           
 int AbstractBuild.getUpstreamRelationship(AbstractProject that)
          Gets the dependency relationship from this build (as the sink) and that project (as the source.)
 AbstractBuild<?,?> AbstractBuild.getUpstreamRelationshipBuild(AbstractProject<?,?> that)
          Works like AbstractBuild.getUpstreamRelationship(AbstractProject) but returns the actual build object.
 boolean DependencyGraph.hasIndirectDependencies(AbstractProject src, AbstractProject dst)
          Returns true if a project has a non-direct dependency to another project.
 boolean DependencyGraph.hasIndirectDependencies(AbstractProject src, AbstractProject dst)
          Returns true if a project has a non-direct dependency to another project.
 Queue.WaitingItem Queue.schedule(AbstractProject p)
          Schedule a new build for this project.
 

Method parameters in hudson.model with type arguments of type AbstractProject
 void DependencyGraph.addDependency(AbstractProject upstream, Collection<? extends AbstractProject> downstream)
          Deprecated. since 1.341
 void DependencyGraph.addDependency(Collection<? extends AbstractProject> upstream, AbstractProject downstream)
          Deprecated. since 1.341
 

Constructors in hudson.model with parameters of type AbstractProject
AbstractBuild.DependencyChange(AbstractProject<?,?> project, int fromId, int toId)
           
AbstractProject.BecauseOfDownstreamBuildInProgress(AbstractProject<?,?> up)
           
AbstractProject.BecauseOfUpstreamBuildInProgress(AbstractProject<?,?> up)
           
DependencyGraph.Dependency(AbstractProject upstream, AbstractProject downstream)
           
DependencyGraph.Dependency(AbstractProject upstream, AbstractProject downstream)
           
 

Uses of AbstractProject in hudson.model.listeners
 

Methods in hudson.model.listeners with parameters of type AbstractProject
static void SCMPollListener.fireBeforePolling(AbstractProject<?,?> project, TaskListener listener)
           
static void SCMPollListener.firePollingFailed(AbstractProject<?,?> project, TaskListener listener, Throwable exception)
           
static void SCMPollListener.firePollingSuccess(AbstractProject<?,?> project, TaskListener listener, PollingResult result)
           
 void SCMPollListener.onBeforePolling(AbstractProject<?,?> project, TaskListener listener)
          Called before the polling execution.
 void SCMPollListener.onPollingFailed(AbstractProject<?,?> project, TaskListener listener, Throwable exception)
          Called when the polling concluded with an error.
 void SCMPollListener.onPollingSuccess(AbstractProject<?,?> project, TaskListener listener, PollingResult result)
          Called when the polling successfully concluded.
 

Uses of AbstractProject in hudson.model.queue
 

Methods in hudson.model.queue with parameters of type AbstractProject
 Collection<? extends SubTask> SubTaskContributor.forProject(AbstractProject<?,?> p)
           
 

Uses of AbstractProject in hudson.os.solaris
 

Methods in hudson.os.solaris with parameters of type AbstractProject
 void ZFSProvisioner.discardWorkspace(AbstractProject<?,?> project, FilePath ws)
           
 

Uses of AbstractProject in hudson.scm
 

Methods in hudson.scm with parameters of type AbstractProject
static List<SCMDescriptor<?>> SCM._for(AbstractProject project)
          Returns the list of SCMDescriptors that are applicable to the given project.
protected abstract  PollingResult SCM.compareRemoteRevisionWith(AbstractProject<?,?> project, Launcher launcher, FilePath workspace, TaskListener listener, SCMRevisionState baseline)
          Compares the current state of the remote repository against the given baseline SCMRevisionState.
protected  PollingResult NullSCM.compareRemoteRevisionWith(AbstractProject project, Launcher launcher, FilePath workspace, TaskListener listener, SCMRevisionState baseline)
           
 boolean SCMDescriptor.isApplicable(AbstractProject project)
          Allows SCMDescriptors to choose which projects it wants to be configurable against.
static SCM SCMS.parseSCM(org.kohsuke.stapler.StaplerRequest req, AbstractProject target)
          Parses SCM configuration from the submitted form.
 PollingResult SCM.poll(AbstractProject<?,?> project, Launcher launcher, FilePath workspace, TaskListener listener, SCMRevisionState baseline)
          Convenience method for the caller to handle the backward compatibility between pre 1.345 SCMs.
 boolean SCM.pollChanges(AbstractProject<?,?> project, Launcher launcher, FilePath workspace, TaskListener listener)
          Deprecated. as of 1.345 Override SCM.calcRevisionsFromBuild(AbstractBuild, Launcher, TaskListener) and SCM.compareRemoteRevisionWith(AbstractProject, Launcher, FilePath, TaskListener, SCMRevisionState) for implementation. The implementation is now separated in two pieces, one that computes the revision of the current workspace, and the other that computes the revision of the remote repository. Call SCM.poll(AbstractProject, Launcher, FilePath, TaskListener, SCMRevisionState) for use instead.
 boolean SCM.processWorkspaceBeforeDeletion(AbstractProject<?,?> project, FilePath workspace, Node node)
          Called before a workspace is deleted on the given node, to provide SCM an opportunity to perform clean up.
 

Uses of AbstractProject in hudson.security
 

Methods in hudson.security with parameters of type AbstractProject
 ACL AuthorizationStrategy.getACL(AbstractProject<?,?> project)
          Deprecated. since 1.277 Override AuthorizationStrategy.getACL(Job) instead.
 

Uses of AbstractProject in hudson.tasks
 

Methods in hudson.tasks that return types with arguments of type AbstractProject
 List<AbstractProject> BuildTrigger.getChildProjects()
          Deprecated. as of 1.406 Use BuildTrigger.getChildProjects(ItemGroup)
 List<AbstractProject> BuildTrigger.getChildProjects(AbstractProject owner)
           
 List<AbstractProject> BuildTrigger.getChildProjects(ItemGroup base)
           
 Map<AbstractProject,Integer> Fingerprinter.FingerprintAction.getDependencies()
          Gets the dependency to other existing builds in a map.
 Map<AbstractProject,Integer> Fingerprinter.FingerprintAction.getDependencies(boolean includeMissing)
          Gets the dependency to other builds in a map.
 

Methods in hudson.tasks with parameters of type AbstractProject
 void BuildTrigger.buildDependencyGraph(AbstractProject owner, DependencyGraph graph)
           
 void Fingerprinter.buildDependencyGraph(AbstractProject owner, DependencyGraph graph)
           
 FormValidation Fingerprinter.DescriptorImpl.doCheck(AbstractProject project, String value)
          Performs on-the-fly validation on the file mask wildcard.
 FormValidation ArtifactArchiver.DescriptorImpl.doCheckArtifacts(AbstractProject project, String value)
          Performs on-the-fly validation on the file mask wildcard.
 List<AbstractProject> BuildTrigger.getChildProjects(AbstractProject owner)
           
static List<Descriptor<BuildWrapper>> BuildWrappers.getFor(AbstractProject<?,?> project)
          List up all BuildWrapperDescriptors that are applicable for the given project.
 Action BuildWrapper.getProjectAction(AbstractProject job)
          Deprecated. Use BuildWrapper.getProjectActions(AbstractProject) instead.
 Action BuildStepCompatibilityLayer.getProjectAction(AbstractProject<?,?> project)
          Deprecated.  
 Action BuildStep.getProjectAction(AbstractProject<?,?> project)
          Deprecated. as of 1.341. Use BuildStep.getProjectActions(AbstractProject) instead.
 Collection<? extends Action> BuildWrapper.getProjectActions(AbstractProject job)
          Actions to be displayed in the job page.
 Collection<? extends Action> BuildStepCompatibilityLayer.getProjectActions(AbstractProject<?,?> project)
          Deprecated.  
 Collection<? extends Action> BuildStep.getProjectActions(AbstractProject<?,?> project)
          Returns action objects if this BuildStep has actions to contribute to a Project.
 boolean BuildTrigger.hasSame(AbstractProject owner, Collection<? extends AbstractProject> projects)
          Checks if this trigger has the exact same set of children as the given list.
abstract  boolean BuildWrapperDescriptor.isApplicable(AbstractProject<?,?> item)
          Returns true if this task is applicable to the given project.
 

Method parameters in hudson.tasks with type arguments of type AbstractProject
static
<T extends BuildStep & Describable<T>>
List<Descriptor<T>>
BuildStepDescriptor.filter(List<Descriptor<T>> base, Class<? extends AbstractProject> type)
          Filters a descriptor for BuildSteps by using BuildStepDescriptor.isApplicable(Class).
 boolean BuildTrigger.hasSame(AbstractProject owner, Collection<? extends AbstractProject> projects)
          Checks if this trigger has the exact same set of children as the given list.
 boolean BuildTrigger.hasSame(Collection<? extends AbstractProject> projects)
          Deprecated. as of 1.406 Use BuildTrigger.hasSame(AbstractProject, Collection)
 boolean Shell.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 boolean BuildTrigger.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 boolean Fingerprinter.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
abstract  boolean BuildStepDescriptor.isApplicable(Class<? extends AbstractProject> jobType)
          Returns true if this task is applicable to the given project.
 boolean ArtifactArchiver.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 boolean BatchFile.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 boolean Maven.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 boolean BuildTrigger.DescriptorImpl.showEvenIfUnstableOption(Class<? extends AbstractProject<?,?>> jobType)
           
 

Constructor parameters in hudson.tasks with type arguments of type AbstractProject
BuildTrigger(Collection<? extends AbstractProject> childProjects, Result threshold)
           
BuildTrigger(List<AbstractProject> childProjects, Result threshold)
           
 

Uses of AbstractProject in hudson.tasks.junit
 

Methods in hudson.tasks.junit with parameters of type AbstractProject
 FormValidation JUnitResultArchiver.DescriptorImpl.doCheckTestResults(AbstractProject project, String value)
          Performs on-the-fly validation on the file mask wildcard.
 Collection<Action> JUnitResultArchiver.getProjectActions(AbstractProject<?,?> project)
           
 

Method parameters in hudson.tasks.junit with type arguments of type AbstractProject
 boolean JUnitResultArchiver.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 

Uses of AbstractProject in hudson.tasks.test
 

Fields in hudson.tasks.test declared as AbstractProject
 AbstractProject<?,?> TestResultProjectAction.project
          Project that owns this action.
 

Methods in hudson.tasks.test that return types with arguments of type AbstractProject
 List<AbstractProject> AggregatedTestResultPublisher.TestResultAction.getDidntRun()
          Gets the downstream projects that haven't run yet, but expected to produce test results.
 Collection<AbstractProject> AggregatedTestResultPublisher.TestResultAction.getJobs()
          Gets the jobs to be monitored.
 List<AbstractProject> AggregatedTestResultPublisher.TestResultAction.getNoFingerprints()
          Gets the downstream projects that have available test results, but do not appear to have fingerprinting enabled.
 

Methods in hudson.tasks.test with parameters of type AbstractProject
 FormValidation AggregatedTestResultPublisher.DescriptorImpl.doCheck(AbstractProject project, String value)
           
 

Method parameters in hudson.tasks.test with type arguments of type AbstractProject
 boolean AggregatedTestResultPublisher.DescriptorImpl.isApplicable(Class<? extends AbstractProject> jobType)
           
 

Constructors in hudson.tasks.test with parameters of type AbstractProject
TestResultProjectAction(AbstractProject<?,?> project)
           
 

Uses of AbstractProject in hudson.triggers
 

Methods in hudson.triggers that return AbstractProject
 AbstractProject<?,?> SCMTrigger.SCMAction.getOwner()
           
 

Uses of AbstractProject in hudson.util
 

Methods in hudson.util with parameters of type AbstractProject
 void DescribableList.buildDependencyGraph(AbstractProject owner, DependencyGraph graph)
          Picks up DependencyDeclarers and allow it to build dependencies.
protected  FilePath FormFieldValidator.WorkspaceFileMask.getBaseDirectory(AbstractProject<?,?> p)
          Deprecated. The base directory from which the path name is resolved.
protected  FilePath FormFieldValidator.WorkspaceFilePath.getBaseDirectory(AbstractProject<?,?> p)
          Deprecated. The base directory from which the path name is resolved.
 

Uses of AbstractProject in jenkins.model
 

Methods in jenkins.model with type parameters of type AbstractProject
<T extends AbstractProject<?,?>>
T
Jenkins.copy(T src, String name)
           
 

Methods in jenkins.model with parameters of type AbstractProject
 void DependencyDeclarer.buildDependencyGraph(AbstractProject owner, DependencyGraph graph)
          Invoked from buildDependencyGraph(DependencyGraph).
 

Uses of AbstractProject in jenkins.scm
 

Methods in jenkins.scm with parameters of type AbstractProject
static List<SCMCheckoutStrategyDescriptor> SCMCheckoutStrategyDescriptor._for(AbstractProject p)
           
 boolean DefaultSCMCheckoutStrategyImpl.DescriptorImpl.isApplicable(AbstractProject project)
           
abstract  boolean SCMCheckoutStrategyDescriptor.isApplicable(AbstractProject project)
          Allows SCMCheckoutStrategyDescriptor to target specific kind of projects, such as matrix projects.
 

Uses of AbstractProject in org.jvnet.hudson.test
 

Methods in org.jvnet.hudson.test with type parameters of type AbstractProject
<J extends AbstractProject<J,R>,R extends AbstractBuild<J,R>>
R
JenkinsRule.buildAndAssertSuccess(J job)
           
<J extends AbstractProject<J,R>,R extends AbstractBuild<J,R>>
R
HudsonTestCase.buildAndAssertSuccess(J job)
           
 

Methods in org.jvnet.hudson.test with parameters of type AbstractProject
 boolean JenkinsRule.TestBuildWrapper.TestBuildWrapperDescriptor.isApplicable(AbstractProject<?,?> project)
           
 boolean HudsonTestCase.TestBuildWrapper.TestBuildWrapperDescriptor.isApplicable(AbstractProject<?,?> project)
           
 



Copyright © 2004-2013. All Rights Reserved.