(MethodInstance method)
| 7 | |
| 8 | public class HtmlUtil { |
| 9 | public static String getId(MethodInstance method) { |
| 10 | return "method-".concat(escapeId(method.getId())); |
| 11 | } |
| 12 | |
| 13 | public static String getId(FieldInstance field) { |
| 14 | return "field-".concat(escapeId(field.getId())); |
no test coverage detected