Examples of IResourceVariantTree


Examples of org.eclipse.team.core.variants.IResourceVariantTree

  }

  private IResourceVariant getSourceVariant(
      GitResourceVariantTreeSubscriber subscriber, IResource resource,
      boolean includeLocal) throws TeamException {
    IResourceVariantTree tree = subscriber.getSourceTree();
    assertNotNull(tree);
    assertTrue(tree instanceof GitSourceResourceVariantTree);
    IResourceVariant resourceVariant = tree.getResourceVariant(resource);
    assertNotNull(resourceVariant);
    if (includeLocal)
      assertTrue(resourceVariant instanceof GitLocalResourceVariant);
    else
      assertTrue(resourceVariant instanceof GitRemoteResource);
View Full Code Here

Examples of org.eclipse.team.core.variants.IResourceVariantTree

  }

  private IResourceVariant getBaseVariant(
      GitResourceVariantTreeSubscriber subscriber, IResource resource)
      throws TeamException {
    IResourceVariantTree tree = subscriber.getBaseTree();
    assertNotNull(tree);
    assertTrue(tree instanceof GitBaseResourceVariantTree);
    IResourceVariant resourceVariant = tree
        .getResourceVariant(resource);
    assertNotNull(resourceVariant);
    assertTrue(resourceVariant instanceof GitRemoteResource);
    return resourceVariant;
  }
View Full Code Here

Examples of org.eclipse.team.core.variants.IResourceVariantTree

  }

  private IResourceVariant getRemoteVariant(
      GitResourceVariantTreeSubscriber subscriber, IResource resource)
      throws TeamException {
    IResourceVariantTree tree = subscriber.getRemoteTree();
    assertNotNull(tree);
    assertTrue(tree instanceof GitRemoteResourceVariantTree);
    IResourceVariant resourceVariant = tree.getResourceVariant(resource);
    assertNotNull(resourceVariant);
    assertTrue(resourceVariant instanceof GitRemoteResource);
    return resourceVariant;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.