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

com.fastobject.diff.ChineseObjectDiff Maven / Gradle / Ivy

The newest version!
package com.fastobject.diff;

import java.util.List;

/**
 * Created by colinsu
 *
 */
public class ChineseObjectDiff extends AbstractObjectDiff {
    @Override
    protected String genDiffStr(Object sourceObject, Object targetObject) throws Exception {
        List diffWappers = generateDiff(sourceObject, targetObject);
        return DiffUtils.genDiffStr(diffWappers);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy