Class SBuildStepsCollectionImpl
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.SBuildStepsCollectionImpl
-
- All Implemented Interfaces:
SBuildStepsCollection
public class SBuildStepsCollectionImpl extends Object implements SBuildStepsCollection
Created by Eugene Petrenko (eugene.petrenko@gmail.com) Date: 22.03.13 14:06
-
-
Constructor Summary
Constructors Constructor Description SBuildStepsCollectionImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addStep(SBuildRunnerDescriptor runner, boolean isEnabled)
Collection<SBuildStepDescriptor>
getBuildRunners()
Collection<SBuildStepDescriptor>
getEnabledBuildRunners()
Collection<InvalidProperty>
getInvalidProperties()
-
-
-
Method Detail
-
getBuildRunners
@NotNull public Collection<SBuildStepDescriptor> getBuildRunners()
- Specified by:
getBuildRunners
in interfaceSBuildStepsCollection
- Returns:
- all build steps for a build configuration
-
addStep
public void addStep(SBuildRunnerDescriptor runner, boolean isEnabled)
-
getEnabledBuildRunners
@NotNull public Collection<SBuildStepDescriptor> getEnabledBuildRunners()
- Specified by:
getEnabledBuildRunners
in interfaceSBuildStepsCollection
- Returns:
- all enabled build steps for a build configuration
-
getInvalidProperties
@NotNull public Collection<InvalidProperty> getInvalidProperties()
- Specified by:
getInvalidProperties
in interfaceSBuildStepsCollection
- Returns:
- invalid properties collection for all enabled build steps
-
-