當前位置: 首頁>>代碼示例>>Java>>正文


Java IssuePullRequestStep類代碼示例

本文整理匯總了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;
}
 
開發者ID:codenvy,項目名稱:codenvy,代碼行數:36,代碼來源:BitbucketContributionWorkflow.java

示例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;
}
 
開發者ID:codenvy,項目名稱:codenvy,代碼行數:29,代碼來源:VstsContributionWorkflow.java

示例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;
}
 
開發者ID:eclipse,項目名稱:che,代碼行數:34,代碼來源:GitHubContributionWorkflow.java


注:本文中的org.eclipse.che.plugin.pullrequest.client.steps.IssuePullRequestStep類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。