/[classpath]/classpath/java/util/AbstractSequentialList.java
ViewVC logotype

Diff of /classpath/java/util/AbstractSequentialList.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.15.2.2 by tromey, Sun Aug 15 07:59:51 2004 UTC revision 1.15.2.3 by gnu_andrew, Thu Jan 13 22:40:40 2005 UTC
# Line 105  public abstract class AbstractSequential Line 105  public abstract class AbstractSequential
105     * @throws ClassCastException if o cannot be added to this list due to its     * @throws ClassCastException if o cannot be added to this list due to its
106     *         type     *         type
107     * @throws IllegalArgumentException if o cannot be added to this list for     * @throws IllegalArgumentException if o cannot be added to this list for
108     *         some other reason     *         some other reason.
109       * @throws NullPointerException if o is null and the list does not permit
110       *         the addition of null values.
111     */     */
112    public void add(int index, E o)    public void add(int index, E o)
113    {    {
# Line 137  public abstract class AbstractSequential Line 139  public abstract class AbstractSequential
139     * @throws IllegalArgumentException if some element of c cannot be added     * @throws IllegalArgumentException if some element of c cannot be added
140     *         to this list for some other reason     *         to this list for some other reason
141     * @throws NullPointerException if the specified collection is null     * @throws NullPointerException if the specified collection is null
142       * @throws NullPointerException if an object, o, in c is null and the list
143       *         does not permit the addition of null values.
144     * @see #add(int, Object)     * @see #add(int, Object)
145     */     */
146    public boolean addAll(int index, Collection<? extends E> c)    public boolean addAll(int index, Collection<? extends E> c)
# Line 214  public abstract class AbstractSequential Line 218  public abstract class AbstractSequential
218     *         type     *         type
219     * @throws IllegalArgumentException if o cannot be added to this list for     * @throws IllegalArgumentException if o cannot be added to this list for
220     *         some other reason     *         some other reason
221       * @throws NullPointerException if o is null and the list does not allow
222       *         a value to be set to null.
223     */     */
224    public E set(int index, E o)    public E set(int index, E o)
225    {    {

Legend:
Removed from v.1.15.2.2  
changed lines
  Added in v.1.15.2.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26