Uses of Class
org.openstreetmap.josm.tools.Diff.Change
-
Packages that use Diff.Change Package Description org.openstreetmap.josm.gui.history Provides GUI classes for handling history of OSM objects.org.openstreetmap.josm.tools Provides the classes for various utilities and tools called from all other packages. -
-
Uses of Diff.Change in org.openstreetmap.josm.gui.history
Methods in org.openstreetmap.josm.gui.history with parameters of type Diff.Change Modifier and Type Method Description private voidTwoColumnDiff. twoColumnDiffFromScript(Diff.Change script, java.lang.Object[] a, java.lang.Object[] b, boolean reversed)The result from the diff algorithm is a "script" (a compressed description of the changes) This method expands this script into a full two column description. -
Uses of Diff.Change in org.openstreetmap.josm.tools
Fields in org.openstreetmap.josm.tools declared as Diff.Change Modifier and Type Field Description Diff.ChangeDiff.Change. linkPrevious or next edit command.Methods in org.openstreetmap.josm.tools that return Diff.Change Modifier and Type Method Description Diff.ChangeDiff.ForwardScript. buildScript(boolean[] changed0, int len0, boolean[] changed1, int len1)Scan the tables of which lines are inserted and deleted, producing an edit script in forward order.Diff.ChangeDiff.ReverseScript. buildScript(boolean[] changed0, int len0, boolean[] changed1, int len1)Diff.ChangeDiff.ScriptBuilder. buildScript(boolean[] changed0, int len0, boolean[] changed1, int len1)Scan the tables of which lines are inserted and deleted, producing an edit script.Diff.ChangeDiff. diff(Diff.ScriptBuilder bld)Get the results of comparison as an edit script.Diff.ChangeDiff. diff2(boolean reverse)Report the differences of two files.Constructors in org.openstreetmap.josm.tools with parameters of type Diff.Change Constructor Description Change(int line0, int line1, int deleted, int inserted, Diff.Change old)Cons an additional entry onto the front of an edit script OLD.
-