Converts a numeric Opcode into a String
(int i)
| 47 | |
| 48 | /** Converts a numeric Opcode into a String */ |
| 49 | public static String |
| 50 | string(int i) { |
| 51 | return opcodes.getText(i); |
| 52 | } |
| 53 | |
| 54 | /** Converts a String representation of an Opcode into its numeric value */ |
| 55 | public static int |
no test coverage detected