com.bluemarsh.jswat.parser
Class JavaParser.ClassDefinition

java.lang.Object
  |
  +--com.bluemarsh.jswat.parser.JavaParser.ClassDefinition
Enclosing class:
JavaParser

public class JavaParser.ClassDefinition
extends java.lang.Object

ClassDefinition gives the classname and the start and end line numbers of a class definition.


Field Summary
 int beginLine
          Line number at which class definition begins.
 java.lang.String className
          Name of class that begins at lineNumber, including the package name, if any, and nested class names, if applicable.
 int endLine
          Line number at which class definition ends.
 
Constructor Summary
JavaParser.ClassDefinition()
           
 
Method Summary
 java.lang.String toString()
          Return a String representation of this.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

beginLine

public int beginLine
Line number at which class definition begins.

endLine

public int endLine
Line number at which class definition ends.

className

public java.lang.String className
Name of class that begins at lineNumber, including the package name, if any, and nested class names, if applicable.
Constructor Detail

JavaParser.ClassDefinition

public JavaParser.ClassDefinition()
Method Detail

toString

public java.lang.String toString()
Return a String representation of this.
Overrides:
toString in class java.lang.Object