Package jp.sf.amateras.stepcounter

Examples of jp.sf.amateras.stepcounter.StepCounter


   *
   * @param file �t�@�C��
   * @return �t�@�C���ɑΉ�����{@link Cutter}�̎���
   */
  public static Cutter getCutter(File file) {
    StepCounter counter = StepCounterFactory.getCounter(file.getName());
    if(counter != null && counter instanceof Cutter){
      return (Cutter) counter;
    }
    return null;
  }
View Full Code Here


      }
      }
    }

    private CountResult count(File file) throws IOException {
    StepCounter counter = StepCounterFactory.getCounter(file.getName());
    if (counter != null) {
      return counter.count(file, Util.getFileEncoding(file));
    } else {
      return new CountResult(file, file.getName(), null, null, 0, 0, 0);
    }
    }
View Full Code Here

TOP

Related Classes of jp.sf.amateras.stepcounter.StepCounter

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.