Visits the source of the class. @param source the name of the source file from which the class was compiled. May be null . @param debug additional debug information to compute the correspondence between source and compiled elements of the class. May be null .
(final String source, final String debug)
| 115 | * compiled elements of the class. May be <tt>null</tt>. |
| 116 | */ |
| 117 | public void visitSource(final String source, final String debug) { |
| 118 | if (cv != null) { |
| 119 | cv.visitSource(source, debug); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Visit the module corresponding to the class. |