(final Attribute attributeList)
| 287 | private Attribute[] data = new Attribute[SIZE_INCREMENT]; |
| 288 | |
| 289 | void addAttributes(final Attribute attributeList) { |
| 290 | Attribute attribute = attributeList; |
| 291 | while (attribute != null) { |
| 292 | if (!contains(attribute)) { |
| 293 | add(attribute); |
| 294 | } |
| 295 | attribute = attribute.nextAttribute; |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | Attribute[] toArray() { |
| 300 | Attribute[] result = new Attribute[size]; |
no test coverage detected