org.nutz.lang
类 Code.CodeAnalysisResult

java.lang.Object
  继承者 org.nutz.lang.Code.CodeAnalysisResult
直接已知子类:
Code.CodeStatisticsResult
包容类:
Code

public static class Code.CodeAnalysisResult
extends java.lang.Object

代码分析结果。

作者:
pangwu86(pangwu86@gmail.com)

字段摘要
protected  long commentLines
           
protected  long importLines
           
protected  long normalLines
           
protected  long whiteLines
           
 
构造方法摘要
Code.CodeAnalysisResult()
           
Code.CodeAnalysisResult(long normalLines, long commentLines, long whiteLines, long importLines)
           
 
方法摘要
 long getCommentLines()
           
 long getImportLines()
           
 long getNormalLines()
           
 long getTotalLines()
           
 long getWhiteLines()
           
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

字段详细信息

normalLines

protected long normalLines

commentLines

protected long commentLines

whiteLines

protected long whiteLines

importLines

protected long importLines
构造方法详细信息

Code.CodeAnalysisResult

public Code.CodeAnalysisResult()

Code.CodeAnalysisResult

public Code.CodeAnalysisResult(long normalLines,
                               long commentLines,
                               long whiteLines,
                               long importLines)
方法详细信息

getNormalLines

public long getNormalLines()

getCommentLines

public long getCommentLines()

getWhiteLines

public long getWhiteLines()

getImportLines

public long getImportLines()

getTotalLines

public long getTotalLines()