Package jp.sf.amateras.stepcounter.diffcount.diff

Examples of jp.sf.amateras.stepcounter.diffcount.diff.DiffEngine


      if (newSource.isIgnore()) {
        return null;
      }

      DiffCountHandler handler = new DiffCountHandler();
      DiffEngine engine = new DiffEngine(handler, oldSource.getSource(),
          newSource.getSource());
      engine.doDiff();

      diffResult.setAddCount(handler.getAddCount());
      diffResult.setDelCount(handler.getDelCount());
      diffResult.setCategory(newSource.getCategory());
View Full Code Here

TOP

Related Classes of jp.sf.amateras.stepcounter.diffcount.diff.DiffEngine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.