Package org.eclipse.egit.ui.internal.commit.DiffStyleRangeFormatter.DiffStyleRange

Examples of org.eclipse.egit.ui.internal.commit.DiffStyleRangeFormatter.DiffStyleRange.Type


      throws IOException {
    if (prefix == ' ') {
      super.writeLine(prefix, text, cur);
      stream.flushLine();
    } else {
      Type type = prefix == '+' ? Type.ADD : Type.REMOVE;
      int start = stream.offset;
      super.writeLine(prefix, text, cur);
      stream.flushLine();
      addRange(type, start, stream.offset);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.commit.DiffStyleRangeFormatter.DiffStyleRange.Type

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.