Adds the specified object into this vector at the specified location. The object is inserted before any element with the same or a higher index increasing their index by 1. If the location is equal to the size of this vector, the object is added at the end. @param location the index at w
(int location, E object)
| 131 | * @see #size |
| 132 | */ |
| 133 | @Override |
| 134 | public void add(int location, E object) { |
| 135 | insertElementAt(object, location); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Adds the specified object at the end of this vector. |