Write out given string as an ASTRING, depending on the type of the characters inside the string. The string should contain only ASCII characters. XXX: Hmm .. this should really be called writeASCII() @param s String to write out @return this
(String s)
| 62 | * @return this |
| 63 | */ |
| 64 | public Argument writeString(String s) { |
| 65 | items.add(new AString(ASCIIUtility.getBytes(s))); |
| 66 | return this; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Convert the given string into bytes in the specified |
no test coverage detected