All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nothome.delta.package-info Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
/**
 * This package contains classes for creating patches for binary files output
 * in the GDIFF format.
 * 

* The patch creation class is {@link com.nothome.delta.Delta}. *

* The patch applier class is {@link com.nothome.delta.GDiffPatcher}. *

* Example use:

 byte source[] = ...;
 byte target[] = ...;
 Delta d = new Delta();
 byte patch[] = d.compute(source, target);

 GDiffPatcher p = new GDiffPatcher();
 byte patchedSource[] = p.patch(source, patch);

 assert java.util.Arrays.equals(target, patchedSource);
 
* * @see com.nothome.delta.Delta * @see com.nothome.delta.GDiffPatcher */ package com.nothome.delta;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy