(Tokenizer st, Name origin)
| 59 | } |
| 60 | |
| 61 | void |
| 62 | rdataFromString(Tokenizer st, Name origin) throws IOException { |
| 63 | strings = new ArrayList(2); |
| 64 | while (true) { |
| 65 | Tokenizer.Token t = st.get(); |
| 66 | if (!t.isString()) |
| 67 | break; |
| 68 | try { |
| 69 | strings.add(byteArrayFromString(t.value)); |
| 70 | } |
| 71 | catch (TextParseException e) { |
| 72 | throw st.exception(e.getMessage()); |
| 73 | } |
| 74 | |
| 75 | } |
| 76 | st.unget(); |
| 77 | } |
| 78 | |
| 79 | /** converts to a String */ |
| 80 | String |