()
| 217 | } |
| 218 | |
| 219 | public String toString() { |
| 220 | StringBuffer buf = new StringBuffer(); |
| 221 | String[] names = names(); |
| 222 | for (int i = 0; i < names.length; i++) { |
| 223 | String[] values = _getValues(names[i]); |
| 224 | for (int j = 0; j < values.length; j++) { |
| 225 | buf.append(names[i]).append("=").append(values[j]).append(" "); |
| 226 | } |
| 227 | } |
| 228 | return buf.toString(); |
| 229 | } |
| 230 | |
| 231 | public final void write(DataOutput out) throws IOException { |
| 232 | out.writeInt(size()); |
no test coverage detected