Uses of Class
org.openstreetmap.josm.tools.Diff.change

Packages that use Diff.change
org.openstreetmap.josm.gui.history   
org.openstreetmap.josm.tools   
 

Uses of Diff.change in org.openstreetmap.josm.gui.history
 

Methods in org.openstreetmap.josm.gui.history with parameters of type Diff.change
private  void TwoColumnDiff.twoColumnDiffFromScript(Diff.change script, java.lang.Object[] a, java.lang.Object[] b)
          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
 Diff.change Diff.change.link
          Previous or next edit command.
 

Methods in org.openstreetmap.josm.tools that return Diff.change
 Diff.change Diff.ScriptBuilder.build_script(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.ReverseScript.build_script(boolean[] changed0, int len0, boolean[] changed1, int len1)
           
 Diff.change Diff.ForwardScript.build_script(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.diff_2(boolean reverse)
           
 Diff.change Diff.diff(Diff.ScriptBuilder bld)
          Get the results of comparison as an edit script.
 

Constructors in org.openstreetmap.josm.tools with parameters of type Diff.change
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.
 



JOSM