Adds an arbitrary object to the end of this SimpleSequence . If the object itself does not implement the TemplateModel interface, it will be wrapped into an appropriate adapter on the first call to #get(int). @param obj the boolean to be added.
(Object obj)
| 171 | * @param obj the boolean to be added. |
| 172 | */ |
| 173 | public void add(Object obj) { |
| 174 | list.add(obj); |
| 175 | unwrappedList = null; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Adds a boolean to the end of this <tt>SimpleSequence</tt>, by |
no outgoing calls
no test coverage detected