List.remove

Removes the items from the receiver which are between the given zero-relative start and end indices (inclusive).

@param start the start of the range @param end the end of the range

@exception IllegalArgumentException <ul> <li>ERROR_INVALID_RANGE - if either the start or end are not between 0 and the number of elements in the list minus 1 (inclusive)</li> </ul> @exception SWTException <ul> <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> </ul>

  1. void remove(int index)
  2. void remove(int start, int end)
    class List
    void
    remove
    (
    int start
    ,
    int end
    )
  3. void remove(String string)
  4. void remove(int[] indices)

Meta