diff -r dee028db6e9b -r 73bdfa70b04e src/net/fortuna/ical4j/model/ComponentList.java --- a/src/net/fortuna/ical4j/model/ComponentList.java Tue Feb 10 19:25:00 2015 +0100 +++ b/src/net/fortuna/ical4j/model/ComponentList.java Tue Feb 10 19:38:00 2015 +0100 @@ -124,7 +124,7 @@ * Add a component to the list. * @param component the component to add * @return true - * @see List#add(java.lang.Object) + * @see java.util.List#add(Object) */ public final boolean add(final Component component) { return add((Object) component); @@ -135,7 +135,7 @@ * net.fortuna.ical4j.model.Component. * @param component a component to add * @return true if the object was added, otherwise false - * @see List#add(E) + * @see java.util.List#add(Object) */ public final boolean add(final Object component) { if (!(component instanceof Component)) { @@ -147,14 +147,14 @@ /** * @return boolean indicates if the list is empty - * @see List#isEmpty() + * @see java.util.List#isEmpty() */ // public final boolean isEmpty() { // return components.isEmpty(); // } /** * @return an iterator - * @see List#iterator() + * @see java.util.List#iterator() */ // public final Iterator iterator() { // return components.iterator(); @@ -163,7 +163,7 @@ * Remove a component from the list. * @param component the component to remove * @return true if the list contained the specified component - * @see List#remove(java.lang.Object) + * @see java.util.List#remove(java.lang.Object) */ public final boolean remove(final Component component) { return remove((Object) component); @@ -171,7 +171,7 @@ /** * @return the number of components in the list - * @see List#size() + * @see java.util.List#size() */ // public final int size() { // return components.size();