This will add an object to the array. @param object The object to add to the array.
( COSBase object )
| 67 | * @param object The object to add to the array. |
| 68 | */ |
| 69 | public void add( COSBase object ) |
| 70 | { |
| 71 | COSBase objectToAdd = maybeWrap(object); |
| 72 | objects.add(objectToAdd); |
| 73 | getUpdateState().update(objectToAdd); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * This will add an object to the array. |