本文整理匯總了Java中org.eclipse.che.plugin.pullrequest.client.steps.IssuePullRequestStep類的典型用法代碼示例。如果您正苦於以下問題:Java IssuePullRequestStep類的具體用法?Java IssuePullRequestStep怎麽用?Java IssuePullRequestStep使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
IssuePullRequestStep類屬於org.eclipse.che.plugin.pullrequest.client.steps包,在下文中一共展示了IssuePullRequestStep類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: BitbucketContributionWorkflow
import org.eclipse.che.plugin.pullrequest.client.steps.IssuePullRequestStep; //導入依賴的package包/類
@Inject
public BitbucketContributionWorkflow(
InitializeWorkflowContextStep initializeWorkflowContextStep,
DefineWorkBranchStep defineWorkBranchStep,
CommitWorkingTreeStep commitWorkingTreeStep,
AuthorizeCodenvyOnVCSHostStep authorizeCodenvyOnVCSHostStep,
DefineExecutionConfiguration defineExecutionConfiguration,
DetermineUpstreamRepositoryStep determineUpstreamRepositoryStep,
DetectPullRequestStep detectPullRequestStep,
CreateForkStep createForkStep,
AddHttpForkRemoteStep addHttpForkRemoteStep,
AddSshForkRemoteStep addSshForkRemoteStep,
PushBranchOnForkStep pushBranchOnForkStep,
PushBranchOnOriginStep pushBranchOnOriginStep,
GenerateReviewFactoryStep generateReviewFactoryStep,
AddReviewFactoryLinkStep addReviewFactoryLinkStep,
IssuePullRequestStep issuePullRequestStep,
UpdatePullRequestStep updatePullRequestStep) {
this.initializeWorkflowContextStep = initializeWorkflowContextStep;
this.defineWorkBranchStep = defineWorkBranchStep;
this.commitWorkingTreeStep = commitWorkingTreeStep;
this.authorizeCodenvyOnVCSHostStep = authorizeCodenvyOnVCSHostStep;
this.defineExecutionConfiguration = defineExecutionConfiguration;
this.determineUpstreamRepositoryStep = determineUpstreamRepositoryStep;
this.detectPullRequestStep = detectPullRequestStep;
this.createForkStep = createForkStep;
this.addHttpForkRemoteStep = addHttpForkRemoteStep;
this.addSshForkRemoteStep = addSshForkRemoteStep;
this.pushBranchOnForkStep = pushBranchOnForkStep;
this.pushBranchOnOriginStep = pushBranchOnOriginStep;
this.generateReviewFactoryStep = generateReviewFactoryStep;
this.addReviewFactoryLinkStep = addReviewFactoryLinkStep;
this.issuePullRequestStep = issuePullRequestStep;
this.updatePullRequestStep = updatePullRequestStep;
}
示例2: VstsContributionWorkflow
import org.eclipse.che.plugin.pullrequest.client.steps.IssuePullRequestStep; //導入依賴的package包/類
@Inject
public VstsContributionWorkflow(
InitializeWorkflowContextStep initializeWorkflowContextStep,
DefineWorkBranchStep defineWorkBranchStep,
CommitWorkingTreeStep commitWorkingTreeStep,
AuthorizeCodenvyOnVCSHostStep authorizeCodenvyOnVCSHostStep,
DetermineUpstreamRepositoryStep determineUpstreamRepositoryStep,
PushBranchOnOriginStep pushBranchOnOriginStep,
GenerateReviewFactoryStep generateReviewFactoryStep,
AddReviewFactoryLinkStep addReviewFactoryLinkStep,
IssuePullRequestStep issuePullRequestStep,
UpdatePullRequestStep updatePullRequestStep,
CheckBranchToPush checkBranchToPushIsDifferentFromClonedBranchStep,
DetectPullRequestStep detectPullRequestStep) {
this.initializeWorkflowContextStep = initializeWorkflowContextStep;
this.defineWorkBranchStep = defineWorkBranchStep;
this.commitWorkingTreeStep = commitWorkingTreeStep;
this.authorizeCodenvyOnVCSHostStep = authorizeCodenvyOnVCSHostStep;
this.determineUpstreamRepositoryStep = determineUpstreamRepositoryStep;
this.pushBranchOnOriginStep = pushBranchOnOriginStep;
this.generateReviewFactoryStep = generateReviewFactoryStep;
this.addReviewFactoryLinkStep = addReviewFactoryLinkStep;
this.issuePullRequestStep = issuePullRequestStep;
this.updatePullRequestStep = updatePullRequestStep;
this.checkBranchToPushIsDifferentFromClonedBranchStep =
checkBranchToPushIsDifferentFromClonedBranchStep;
this.detectPullRequestStep = detectPullRequestStep;
}
示例3: GitHubContributionWorkflow
import org.eclipse.che.plugin.pullrequest.client.steps.IssuePullRequestStep; //導入依賴的package包/類
@Inject
public GitHubContributionWorkflow(
InitializeWorkflowContextStep initializeWorkflowContextStep,
DefineWorkBranchStep defineWorkBranchStep,
CommitWorkingTreeStep commitWorkingTreeStep,
AuthorizeCodenvyOnVCSHostStep authorizeCodenvyOnVCSHostStep,
DefineExecutionConfiguration defineExecutionConfiguration,
DetermineUpstreamRepositoryStep determineUpstreamRepositoryStep,
CreateForkStep createForkStep,
AddHttpForkRemoteStep addHttpForkRemoteStep,
PushBranchOnForkStep pushBranchOnForkStep,
PushBranchOnOriginStep pushBranchOnOriginStep,
GenerateReviewFactoryStep generateReviewFactoryStep,
AddReviewFactoryLinkStep addReviewFactoryLinkStep,
IssuePullRequestStep issuePullRequestStep,
UpdatePullRequestStep updatePullRequestStep,
DetectPullRequestStep detectPullRequestStep) {
this.initializeWorkflowContextStep = initializeWorkflowContextStep;
this.defineWorkBranchStep = defineWorkBranchStep;
this.commitWorkingTreeStep = commitWorkingTreeStep;
this.authorizeCodenvyOnVCSHostStep = authorizeCodenvyOnVCSHostStep;
this.defineExecutionConfiguration = defineExecutionConfiguration;
this.determineUpstreamRepositoryStep = determineUpstreamRepositoryStep;
this.createForkStep = createForkStep;
this.addHttpForkRemoteStep = addHttpForkRemoteStep;
this.pushBranchOnForkStep = pushBranchOnForkStep;
this.pushBranchOnOriginStep = pushBranchOnOriginStep;
this.generateReviewFactoryStep = generateReviewFactoryStep;
this.addReviewFactoryLinkStep = addReviewFactoryLinkStep;
this.issuePullRequestStep = issuePullRequestStep;
this.updatePullRequestStep = updatePullRequestStep;
this.detectPullRequestStep = detectPullRequestStep;
}