Package org.eclipse.mylyn.tasks.ui.wizards

Examples of org.eclipse.mylyn.tasks.ui.wizards.RepositoryQueryWizard


        return new NewTaskWizard(taskRepository, selection);
    }

    @Override
    public IWizard getQueryWizard(TaskRepository taskRepository, IRepositoryQuery queryToEdit) {
        RepositoryQueryWizard wizard = new RepositoryQueryWizard(taskRepository);
        if (queryToEdit == null || QueryUtils.isCanQuery(queryToEdit)) {
            //add the query selection page only for new queries or predefined ones,
            //not for existing custom ones
            wizard.addPage(new GoogleCodeQuerySelectionPage(taskRepository, queryToEdit));
        }
        wizard.addPage(new GoogleCodeDefinitionQueryPage(taskRepository, queryToEdit));
        return wizard;
    }
View Full Code Here


   * @return {@link RepositoryQueryWizard} with GitHub specific query page
   */
  @Override
  public IWizard getQueryWizard(final TaskRepository taskRepository,
      final IRepositoryQuery queryToEdit) {
    RepositoryQueryWizard wizard = new RepositoryQueryWizard(taskRepository);
    GitHubRepositoryQueryPage queryPage = new GitHubRepositoryQueryPage(
        taskRepository, queryToEdit);
    wizard.addPage(queryPage);
    return wizard;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.mylyn.tasks.ui.wizards.RepositoryQueryWizard

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.