Package org.tmatesoft.hg.internal

Examples of org.tmatesoft.hg.internal.FileChangeMonitor$Action


    File localTags = repo.getRepositoryFile(HgLocalTags);
    if (localTags.canRead() && localTags.isFile()) {
      read(localTags, localToName, localFromName);
    }
    if (localTagsFileMonitor == null) {
      localTagsFileMonitor = new FileChangeMonitor(localTags);
    }
    localTagsFileMonitor.touch(this);
  }
View Full Code Here


    File globalTags = repo.getRepositoryFile(HgTags); // XXX replace with HgDataFile.workingCopy
    if (globalTags.canRead() && globalTags.isFile()) {
      read(globalTags, globalToName, globalFromName);
    }
    if (globalTagsFileMonitor == null) {
      globalTagsFileMonitor = new FileChangeMonitor(globalTags);
    }
    globalTagsFileMonitor.touch(this);
  }
View Full Code Here

TOP

Related Classes of org.tmatesoft.hg.internal.FileChangeMonitor$Action

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.