()
| 56 | } |
| 57 | |
| 58 | public String toString() { |
| 59 | String res; |
| 60 | if (isInterface()) res = "interface "; |
| 61 | else if (isAnnotation()) res = "annotation "; |
| 62 | else res = "class "; |
| 63 | return res + getName(); |
| 64 | } |
| 65 | |
| 66 | private static byte[] replace(int a, int b, byte[] s, int offset, |
| 67 | int length) |
nothing calls this directly
no test coverage detected