(String name)
| 1145 | } |
| 1146 | |
| 1147 | public static String getOuterName(String name) { |
| 1148 | int pos = name.lastIndexOf('$'); |
| 1149 | |
| 1150 | return hasOuterName(name, pos) ? name.substring(0, pos) : null; |
| 1151 | } |
| 1152 | |
| 1153 | public static String getInnerName(String name) { |
| 1154 | return name.substring(name.lastIndexOf('$') + 1); |
no test coverage detected