From e0d42f3d8eabd62c907981c6877a93facf5bf4ca Mon Sep 17 00:00:00 2001 From: apetrelli Date: Tue, 16 Feb 2016 14:52:23 +0100 Subject: [PATCH 1/2] Fixed javadoc issues that impedes Java 8 compilation. --- .../com/nativelibs4java/jalico/ListenableCollections.java | 6 +++--- .../com/nativelibs4java/jalico/ListenableComboModel.java | 2 +- .../com/nativelibs4java/jalico/ListenableListModel.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/nativelibs4java/jalico/ListenableCollections.java b/src/main/java/com/nativelibs4java/jalico/ListenableCollections.java index 1d43ff2..da41c75 100644 --- a/src/main/java/com/nativelibs4java/jalico/ListenableCollections.java +++ b/src/main/java/com/nativelibs4java/jalico/ListenableCollections.java @@ -173,7 +173,7 @@ public static final ListenableMap synchronizedMap(ListenableMap *
  • otherwise a instance of a ListenableCollection<T> will be returned.
  • * * @param component type - * @param collectionToWrap + * @param collectionToWrap collection to wrap * @return listenable collection that uses the provided collection as storage */ public static final ListenableCollection listenableCollection(Collection collectionToWrap) { @@ -192,7 +192,7 @@ public static final ListenableCollection listenableCollection(Collection< * Wraps a list in a listenable list.
    * If is provided with a list that implements the RandomAccess interface, this method returns a listenable list that also implements the RandomAccess interface. * @param component type - * @param listToWrap + * @param listToWrap list to wrap * @return listenable list that uses the provided list as storage */ public static final ListenableList listenableList(List listToWrap) { @@ -214,7 +214,7 @@ public RandomAccessListenableList(List l) { * Wraps a set in a listenable set.
    * If is provided with a set that implements the SortedSet interface, this method returns a listenable set that also implements the SortedSet interface. * @param component type - * @param setToWrap + * @param setToWrap set to wrap * @return listenable set that uses the provided set as storage */ public static final ListenableSet listenableSet(Set setToWrap) { diff --git a/src/main/java/com/nativelibs4java/jalico/ListenableComboModel.java b/src/main/java/com/nativelibs4java/jalico/ListenableComboModel.java index ea2ff51..8966196 100644 --- a/src/main/java/com/nativelibs4java/jalico/ListenableComboModel.java +++ b/src/main/java/com/nativelibs4java/jalico/ListenableComboModel.java @@ -26,7 +26,7 @@ This file comes from the Jalico project (Java Listenable Collections) * This model safely propagates events from the listenable list to any registered ListDataListener within the event dispatch thread, even if the events were received from an other thread. * @see javax.swing.event.ListDataListener * @see javax.swing.JList - * @see com.ochafik.util.listenable.SwingCollectionListener + * @see SwingCollectionListener * @author Olivier Chafik * @param Type of the elements of the list */ diff --git a/src/main/java/com/nativelibs4java/jalico/ListenableListModel.java b/src/main/java/com/nativelibs4java/jalico/ListenableListModel.java index a659645..f4460ab 100644 --- a/src/main/java/com/nativelibs4java/jalico/ListenableListModel.java +++ b/src/main/java/com/nativelibs4java/jalico/ListenableListModel.java @@ -26,7 +26,7 @@ This file comes from the Jalico project (Java Listenable Collections) * This model safely propagates events from the listenable list to any registered ListDataListener within the event dispatch thread, even if the events were received from an other thread. * @see javax.swing.event.ListDataListener * @see javax.swing.JList - * @see com.ochafik.util.listenable.SwingCollectionListener + * @see SwingCollectionListener * @author Olivier Chafik * @param Type of the elements of the list */ @@ -59,7 +59,7 @@ public void collectionChanged(CollectionEvent e) { /** * Set or change the listenable list which content is reflected by this list model.
    * May trigger DELETED events (if there was already a non-empty underlying list) and ADDED events (if the list being set is not empty). - * @param list + * @param list the list to set */ public void setList(ListenableList list) { ListenableList oldList = this.list; From 1718714bc12975785ae39918bead9949f429dc7f Mon Sep 17 00:00:00 2001 From: apetrelli Date: Tue, 16 Feb 2016 14:53:16 +0100 Subject: [PATCH 2/2] Added some ignored resources. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 2f7896d..113bf58 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ target/ +/.settings/ +/.classpath +/.project