src/net/fortuna/ical4j/model/ComponentList.java

changeset 3
73bdfa70b04e
parent 0
fb9019fb1bf7
     1.1 --- a/src/net/fortuna/ical4j/model/ComponentList.java	Tue Feb 10 19:25:00 2015 +0100
     1.2 +++ b/src/net/fortuna/ical4j/model/ComponentList.java	Tue Feb 10 19:38:00 2015 +0100
     1.3 @@ -124,7 +124,7 @@
     1.4       * Add a component to the list.
     1.5       * @param component the component to add
     1.6       * @return true
     1.7 -     * @see List#add(java.lang.Object)
     1.8 +     * @see java.util.List#add(Object)
     1.9       */
    1.10      public final boolean add(final Component component) {
    1.11          return add((Object) component);
    1.12 @@ -135,7 +135,7 @@
    1.13       * <code>net.fortuna.ical4j.model.Component</code>.
    1.14       * @param component a component to add
    1.15       * @return true if the object was added, otherwise false
    1.16 -     * @see List#add(E)
    1.17 +     * @see java.util.List#add(Object)
    1.18       */
    1.19      public final boolean add(final Object component) {
    1.20          if (!(component instanceof Component)) {
    1.21 @@ -147,14 +147,14 @@
    1.22  
    1.23      /**
    1.24       * @return boolean indicates if the list is empty
    1.25 -     * @see List#isEmpty()
    1.26 +     * @see java.util.List#isEmpty()
    1.27       */
    1.28      // public final boolean isEmpty() {
    1.29      // return components.isEmpty();
    1.30      // }
    1.31      /**
    1.32       * @return an iterator
    1.33 -     * @see List#iterator()
    1.34 +     * @see java.util.List#iterator()
    1.35       */
    1.36      // public final Iterator iterator() {
    1.37      // return components.iterator();
    1.38 @@ -163,7 +163,7 @@
    1.39       * Remove a component from the list.
    1.40       * @param component the component to remove
    1.41       * @return true if the list contained the specified component
    1.42 -     * @see List#remove(java.lang.Object)
    1.43 +     * @see java.util.List#remove(java.lang.Object)
    1.44       */
    1.45      public final boolean remove(final Component component) {
    1.46          return remove((Object) component);
    1.47 @@ -171,7 +171,7 @@
    1.48  
    1.49      /**
    1.50       * @return the number of components in the list
    1.51 -     * @see List#size()
    1.52 +     * @see java.util.List#size()
    1.53       */
    1.54      // public final int size() {
    1.55      // return components.size();

mercurial