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