Returns the fully qualified name of the class belonging to this StackTraceElement. @return the fully qualified type name of the class
()
| 142 | * @return the fully qualified type name of the class |
| 143 | */ |
| 144 | public String getClassName() { |
| 145 | return (declaringClass == null) ? "<unknown class>" : declaringClass; |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Returns the name of the Java source file containing class belonging to |