View Javadoc
1   package gboat2.base.logging.service;
2   
3   import java.io.File;
4   
5   /**
6    * 系统日志
7    * @author zhaop
8    * @since jdk1.6
9    * @date 2012-05-09
10   */
11  public interface ISystemLogService {
12  	/**
13  	 * 
14  	 * @param file
15  	 * @return 整型变量 日志总行数
16  	 */
17  	public int getTotalLineNumber(File file); 
18  	
19  	public int getTotalPage(int lines);
20  }