Package jp.sf.amateras.stepcounter.diffcount

Examples of jp.sf.amateras.stepcounter.diffcount.Main


    }

    try {
      File basedir = getProject().getBaseDir();

      Main main = new Main();
      main.setFormat(format);
      if(output != null && output.length() != 0){
        main.setOutput(new FileOutputStream(output));
      }
      main.setEncoding(encoding);
      main.setSrcdir(new File(basedir, srcdir));
      main.setOlddir(new File(basedir, olddir));

      main.executeCount();

      if(output!=null && !output.equals("")){
        System.out.println(new File(output).getAbsolutePath() + "�ɃJ�E���g���ʂ��o�͂��܂����B");
      }
    } catch(Throwable t){
View Full Code Here

TOP

Related Classes of jp.sf.amateras.stepcounter.diffcount.Main

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.