LineHandler.java 338 B

123456789101112
  1. /**
  2. * Copyright 2008-2009. Chongqing Communications Industry Services Co.,Ltd Information Technology Branch. All rights reserved. <a>http://www.crunii.com</a>
  3. */
  4. package com.crunii.micro.common.file;
  5. /**
  6. * @author 田平 create 2017年9月5日上午10:41:06
  7. */
  8. public interface LineHandler {
  9. public void lineString(String line);
  10. }