Package org.eclipse.team.core.variants

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


import org.eclipse.team.core.variants.SessionResourceVariantByteStore;

class GitBaseResourceVariantTree extends GitResourceVariantTree {

  public GitBaseResourceVariantTree(GitSyncCache cache, GitSynchronizeDataSet gsds) {
    super(new SessionResourceVariantByteStore(), cache, gsds);
  }
View Full Code Here


import org.eclipse.team.core.variants.SessionResourceVariantByteStore;

class GitSourceResourceVariantTree extends GitResourceVariantTree {
  public GitSourceResourceVariantTree(GitSyncCache cache,
      GitSynchronizeDataSet gsds) {
    super(new SessionResourceVariantByteStore(), cache, gsds);
  }
View Full Code Here

import org.eclipse.team.core.variants.SessionResourceVariantByteStore;

class GitRemoteResourceVariantTree extends GitResourceVariantTree {

  GitRemoteResourceVariantTree(GitSyncCache cache, GitSynchronizeDataSet data) {
    super(new SessionResourceVariantByteStore(), cache, data);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.team.core.variants.SessionResourceVariantByteStore

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.