Package com.intellij.openapi.diff.impl.util

Examples of com.intellij.openapi.diff.impl.util.TextDiffTypeEnum


  public ArrayList<LineFragment> getFragments() {
    return myLineFragments;
  }

  static TextDiffTypeEnum getType(DiffFragment fragment) {
    TextDiffTypeEnum type;
    if (fragment.getText1() == null) type = TextDiffTypeEnum.INSERT;
    else if (fragment.getText2() == null) type = TextDiffTypeEnum.DELETED;
    else if (fragment.isModified()) type = TextDiffTypeEnum.CHANGED;
    else type = null;
    return type;
View Full Code Here

TOP

Related Classes of com.intellij.openapi.diff.impl.util.TextDiffTypeEnum

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.