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 void
TwoColumnDiff. twoColumnDiffFromScript(Diff.Change script, Object[] a, 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.Change
Diff.Change. link
Previous or next edit command.Methods in org.openstreetmap.josm.tools that return Diff.Change Modifier and Type Method Description Diff.Change
Diff.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.Change
Diff.ReverseScript. buildScript(boolean[] changed0, int len0, boolean[] changed1, int len1)
Diff.Change
Diff.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.Change
Diff. diff(Diff.ScriptBuilder bld)
Get the results of comparison as an edit script.Diff.Change
Diff. 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.
-