|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||
java.lang.Objectbmsi.util.Diff.change
public static class Diff.change
The result of comparison is an "edit script": a chain of change objects. Each change represents one place where some lines are deleted and some are inserted. LINE0 and LINE1 are the first affected lines in the two files (origin 0). DELETED is the number of lines deleted here from file 0. INSERTED is the number of lines inserted here in file 1. If DELETED is 0 then LINE0 is the number of the line before which the insertion was done; vice versa for INSERTED and LINE1.
| フィールドの概要 | |
|---|---|
int |
deleted
# lines of file 0 changed here. |
int |
inserted
# lines of file 1 changed here. |
int |
line0
Line number of 1st deleted line. |
int |
line1
Line number of 1st inserted line. |
Diff.change |
link
Previous or next edit command. |
| コンストラクタの概要 | |
|---|---|
Diff.change(int line0,
int line1,
int deleted,
int inserted,
Diff.change old)
Cons an additional entry onto the front of an edit script OLD. |
|
| メソッドの概要 |
|---|
| クラス java.lang.Object から継承されたメソッド |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| フィールドの詳細 |
|---|
public Diff.change link
public final int inserted
public final int deleted
public final int line0
public final int line1
| コンストラクタの詳細 |
|---|
public Diff.change(int line0,
int line1,
int deleted,
int inserted,
Diff.change old)
|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||