Package org.eclipse.egit.ui.internal.synchronize.model.TreeBuilder

Examples of org.eclipse.egit.ui.internal.synchronize.model.TreeBuilder.TreeModelFactory


      public boolean isWorkingTree() {
        return false;
      }
    };
    TreeModelFactory treeModelFactory = new TreeModelFactory() {
      public GitModelTree createTreeModel(GitModelObjectContainer parent,
          IPath fullPath, int kind) {
        return new GitModelTree(parent, fullPath, kind);
      }
    };
View Full Code Here


    super(parent);
    this.repo = repo;
    this.location = new Path(repo.getWorkTree().toString());

    this.children = TreeBuilder.build(this, repo, changes, fileFactory,
        new TreeModelFactory() {
          public GitModelTree createTreeModel(
              GitModelObjectContainer parentObject,
              IPath fullPath,
              int kind) {
            return new GitModelCacheTree(parentObject, repo,
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.synchronize.model.TreeBuilder.TreeModelFactory

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.