Package com.realobjects.pdfreactor
Class JavaScriptRecord.SourceLocationInfo
java.lang.Object
com.realobjects.pdfreactor.JavaScriptRecord.SourceLocationInfo
- Enclosing class:
- JavaScriptRecord
An object providing information about the location in a JavaScript that created the log record.
- 
Method SummaryModifier and TypeMethodDescriptionintThe end column.intThe start column.The context relative to the source, ornullif its the top level context.intThe end line.intThe start line.An excerpt of the code that caused the log record.The source script file or user script.
- 
Method Details- 
getSourceThe source script file or user script. 
- 
getContextThe context relative to the source, or nullif its the top level context. Can also indicate an element with an appropriate attribute.
- 
getSnippetAn excerpt of the code that caused the log record. 
- 
getLineStartpublic int getLineStart()The start line. A value of zero indicates that the exact line could not be determined. 
- 
getLineEndpublic int getLineEnd()The end line. A value of zero indicates that the exact line could not be determined. 
- 
getColumnStartpublic int getColumnStart()The start column. A value of zero indicates that the exact column could not be determined. 
- 
getColumnEndpublic int getColumnEnd()The end column. A value of zero indicates that the exact column could not be determined. 
 
-