class MethodReturnValues extends IssueDetails with MethodComprehension
- Source
- MethodReturnValues.scala
- Alphabetic
- By Inheritance
- MethodReturnValues
- MethodComprehension
- ClassComprehension
- IssueDetails
- IssueRepresentations
- ReportableAnalysisResult
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def classFile: ClassFile
- Definition Classes
- MethodReturnValues → ClassComprehension
- def classFileFQN: String
- Definition Classes
- ClassComprehension
- def collectMethodReturnValues: List[PCAndAnyRef[String]]
- val method: Method
- Definition Classes
- MethodReturnValues → MethodComprehension
- def methodJVMSignature: String
- Definition Classes
- MethodComprehension
- val result: AIResult
- def toAnsiColoredString: String
Representation of this issue well suited for console output if the console supports ANSI color escapes.
Representation of this issue well suited for console output if the console supports ANSI color escapes.
If you are generating output related to (a line in) a class file, use a format as used by other compilers, e.g., CLANG and GCC:
FILENAME:[LINE:[COLUMN:]] TYPE: MESSAGE
where FILENAME denotes the name of the file, LINE is the line number if available, COLUMN is the column – which is usually not available when you analyze class files and TYPE identifies the type of the message (e.g., "note", "warning", "error", "fatal error").Line and column information is optional.
If the real filename is not available use the fully qualified name of the class in binary notation (i.e., using "/" to separate the package qualifiers) with the suffice ".class" appended.
Note that the space after the location information is required.
Example
demo/Buggy.class:100: warning: protected field in final class
- Definition Classes
- MethodReturnValues → IssueRepresentations
- def toConsoleString: String
A basic representation of this issue well suited for console output.
A basic representation of this issue well suited for console output.
- Definition Classes
- IssueRepresentations → ReportableAnalysisResult
- def toEclipseConsoleString: String
A representation of this issue well suited for output to the Eclipse IDE console.
A representation of this issue well suited for output to the Eclipse IDE console.
- Definition Classes
- MethodReturnValues → IssueRepresentations
- def toIDL: JsValue
A representation of this issue using the Issues Description Language (which is a JSON dialect.)
A representation of this issue using the Issues Description Language (which is a JSON dialect.)
- Definition Classes
- MethodReturnValues → IssueRepresentations
- def toXHTML(basicInfoOnly: Boolean): Node
An (x)HTML5 representation of the issue, well suited for browser output.
An (x)HTML5 representation of the issue, well suited for browser output.
- Definition Classes
- MethodReturnValues → IssueRepresentations