Home | History | Annotate | Download | only in jdiff

Lines Matching refs:line1

374             int line0 = i0, line1 = i1;
381 script = new change(line0, line1, i0 - line0, i1 - line1, script);
408 int line0 = i0, line1 = i1;
415 script = new change(i0, i1, line0 - i0, line1 - i1, script);
471 LINE0 and LINE1 are the first affected lines in the two files (origin 0).
476 which the insertion was done; vice versa for INSERTED and LINE1. */
488 public final int line1;
491 LINE0 and LINE1 are the first affected lines in the two files (origin 0).
496 which the insertion was done; vice versa for INSERTED and LINE1. */
497 change(int line0, int line1, int deleted, int inserted, change old) {
499 this.line1 = line1;
503 //System.err.println(line0+","+line1+","+inserted+","+deleted);