Package org.eclipse.team.core

Examples of org.eclipse.team.core.RepositoryProviderType


     * @see RepositoryProvider#getID()
     */
    public static VCSAdapter getAdapter(String identifier) {
        if (identifier == null)
            return null;
        RepositoryProviderType provider = RepositoryProviderType
            .getProviderType(identifier);
        try {
            if (identifier.equals(SubclipseAdapter.identifier)) {
                return new SubclipseAdapter(provider);
            }
View Full Code Here


  public void handleRepository(IProgressMonitor monitor, List newProjects,
      UIProjectSetSerializationContext context, List errors,
      ArrayList referenceStrings, IMemento[] providers, int i) {
    try {
      RepositoryProviderType providerType = getRepositoryHelper(getShell())
          .getProviderType(providers, i);
      ProjectSetCapability serializer = getRepositoryHelper(getShell())
          .getSerializer(providerType);
      if (serializer != null) {
        IProject[] allProjects = getRepositoryHelper(getShell()).addToWorkspace(
View Full Code Here

      throws TeamException {
    String id = providers[i].getString("id"); //$NON-NLS-1$
    TeamCapabilityHelper.getInstance().processRepositoryId(
        id,
        PlatformUI.getWorkbench().getActivitySupport());
    RepositoryProviderType providerType = RepositoryProviderType
        .getProviderType(id);
    if (providerType == null) {
      // The provider type is absent. Perhaps there is
      // another provider that can import this type
      providerType = TeamPlugin.getAliasType(id);
View Full Code Here

TOP

Related Classes of org.eclipse.team.core.RepositoryProviderType

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.