Package jetbrains.communicator.ide

Examples of jetbrains.communicator.ide.Change


      return line;
    }

    int addOn = 0;
    for (int i = 0; i < myChanges.length; i++) {
      Change change = myChanges[i];

      if (line < change.getSrcLine()) {
        break;
      }

      addOn += change.getInserted();
      addOn -= change.getDeleted();
    }

    int result = Math.max(line + addOn, 0);
    if (myDestLines != null) {
      return Math.min(myDestLines.length - 1, result);
View Full Code Here

TOP

Related Classes of jetbrains.communicator.ide.Change

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.