(String text)
| 141 | public void op_Tj(byte[] array) { System.out.println(formatByteArray(array, " Tj")); } |
| 142 | public void op_Tj(String string) { System.out.println(formatString(string, " Tj")); } |
| 143 | public void op_squote(String text) { System.out.println(formatString(text, " '")); } |
| 144 | public void op_squote(byte[] array) { System.out.println(formatByteArray(array, " '")); } |
| 145 | public void op_dquote(float aw, float ac, String text) { System.out.println(aw + " " + ac + " " + formatString(text, " \"")); } |
| 146 | public void op_dquote(float aw, float ac, byte[] array) { System.out.println(aw + " " + ac + " " + " " + formatByteArray(array, " \"")); } |
no test coverage detected