(String... children)
| 51 | |
| 52 | |
| 53 | @Override |
| 54 | protected String wrap(String... children) |
| 55 | { |
| 56 | StringBuilder buf = new StringBuilder(); |
| 57 | buf.append('['); |
| 58 | if (children != null) |
| 59 | { |
| 60 | for (String child : children) |
| 61 | { |
| 62 | buf.append(child); |
| 63 | buf.append(','); |
| 64 | } |
| 65 | } |
| 66 | buf.append(']'); |
| 67 | return buf.toString(); |
| 68 | } |
| 69 | |
| 70 | @Override |
| 71 | protected IonList wrapAndParse(String... children) |
no test coverage detected