You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2015/05/16 19:34:27 UTC

svn commit: r1679754 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java

Author: oheger
Date: Sat May 16 17:34:27 2015
New Revision: 1679754

URL: http://svn.apache.org/r1679754
Log:
Javadoc Error: Missing @param tags for generic type parameter.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java?rev=1679754&r1=1679753&r2=1679754&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java Sat May 16 17:34:27 2015
@@ -217,6 +217,7 @@ public class BaseEventSource implements
      * @param propName the name of the affected property (can be <b>null</b>)
      * @param propValue the value of the affected property (can be <b>null</b>)
      * @param before the before update flag
+     * @param <T> the type of the event to be fired
      */
     protected <T extends ConfigurationEvent> void fireEvent(EventType<T> type,
             String propName, Object propValue, boolean before)
@@ -246,6 +247,7 @@ public class BaseEventSource implements
      * @param propName the name of the affected property (can be <b>null</b>)
      * @param propValue the value of the affected property (can be <b>null</b>)
      * @param before the before update flag
+     * @param <T> the type of the event to be created
      * @return the newly created event object
      */
     protected <T extends ConfigurationEvent> ConfigurationEvent createEvent(