Package com.aragost.javahg.commands

Examples of com.aragost.javahg.commands.StatusCommand$StatusLineIterator


    public final String getCommandName() {
        return "status";
    }

    public static StatusCommand on(Repository repository) {
        return new StatusCommand(repository);
    }
View Full Code Here


    public final String getCommandName() {
        return "status";
    }

    public static StatusCommand on(Repository repository) {
        return new StatusCommand(repository);
    }
View Full Code Here

        ensureFileDataLoaded();
        return this.fileData.deletedFiles;
    }
   
    private void loadFileData(){
      StatusResult result = new StatusCommand(repository).added().modified()
                                  .removed().change(this.node).execute();
      if ( result != null ){
        fileData = new ChangesetFileData(result.getAdded(), result.getModified(),
                                         result.getRemoved());
      } else {
View Full Code Here

    public final String getCommandName() {
        return "status";
    }

    public static StatusCommand on(Repository repository) {
        return new StatusCommand(repository);
    }
View Full Code Here

    public final String getCommandName() {
        return "status";
    }

    public static StatusCommand on(Repository repository) {
        return new StatusCommand(repository);
    }
View Full Code Here

    public final String getCommandName() {
        return "status";
    }

    public static StatusCommand on(Repository repository) {
        return new StatusCommand(repository);
    }
View Full Code Here

        ensureFileDataLoaded();
        return this.fileData.deletedFiles;
    }
   
    private void loadFileData(){
      StatusResult result = new StatusCommand(repository).added().modified()
                                  .removed().change(this.node).execute();
      if ( result != null ){
        fileData = new ChangesetFileData(result.getAdded(), result.getModified(),
                                         result.getRemoved());
      } else {
View Full Code Here

TOP

Related Classes of com.aragost.javahg.commands.StatusCommand$StatusLineIterator

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.