You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cs...@apache.org on 2017/06/02 07:25:15 UTC

svn commit: r1797325 - in /aries/trunk/jmx: jmx-blueprint-bundle/pom.xml jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/codec/OSGiBlueprintEvent.java

Author: cschneider
Date: Fri Jun  2 07:25:15 2017
New Revision: 1797325

URL: http://svn.apache.org/viewvc?rev=1797325&view=rev
Log:
Fix javadoc generation

Modified:
    aries/trunk/jmx/jmx-blueprint-bundle/pom.xml
    aries/trunk/jmx/jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/codec/OSGiBlueprintEvent.java

Modified: aries/trunk/jmx/jmx-blueprint-bundle/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/jmx/jmx-blueprint-bundle/pom.xml?rev=1797325&r1=1797324&r2=1797325&view=diff
==============================================================================
--- aries/trunk/jmx/jmx-blueprint-bundle/pom.xml (original)
+++ aries/trunk/jmx/jmx-blueprint-bundle/pom.xml Fri Jun  2 07:25:15 2017
@@ -185,6 +185,7 @@
                             <minmemory>128m</minmemory>
                             <maxmemory>512m</maxmemory>
                             <sourcepath>${project.build.directory}/sources</sourcepath>
+                            <additionalparam>-Xdoclint:none</additionalparam>
                         </configuration>
                     </plugin>
                     <plugin>

Modified: aries/trunk/jmx/jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/codec/OSGiBlueprintEvent.java
URL: http://svn.apache.org/viewvc/aries/trunk/jmx/jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/codec/OSGiBlueprintEvent.java?rev=1797325&r1=1797324&r2=1797325&view=diff
==============================================================================
--- aries/trunk/jmx/jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/codec/OSGiBlueprintEvent.java (original)
+++ aries/trunk/jmx/jmx-blueprint-core/src/main/java/org/apache/aries/jmx/blueprint/codec/OSGiBlueprintEvent.java Fri Jun  2 07:25:15 2017
@@ -31,42 +31,20 @@ import org.osgi.service.blueprint.contai
 /**
  * <p>
  * This class represents the CODEC for the composite data representing a OSGi
- * <link>BlueprintEvent</link>
+ * BlueprintEvent
  * <p>
  * It serves as both the documentation of the type structure and as the
  * codification of the mechanism to convert to/from the CompositeData.
  * <p>
  * The structure of the composite data is:
- * <table border="1">
- * <tr>
- * <td>bundleId</td>
- * <td>long</td>
- * </tr>
- * <tr>
- * <td>extenderBundleId</td>
- * <td>long</td>
- * </tr>
- * <tr>
- * <td>eventType</td>
- * <td>int</td>
- * </tr>
- * <tr>
- * <td>replay</td>
- * <td>boolean</td>
- * </tr>
- * <tr>
- * <td>timestamp</td>
- * <td>long</td>
- * </tr>
- * <tr>
- * <td>dependencies</td>
- * <td>String[]</td>
- * </tr>
- * <tr>
- * <td>exceptionMessage</td>
- * <td>String</td>
- * </tr>
- * </table>
+ * <p>
+ * - bundleId : long<br>
+ * - extenderBundleId : long<br>
+ * - eventType : int<br>
+ * - replay : boolean<br>
+ * - timestamp : long<br>
+ * - dependencies : String[]<br>
+ * - exceptionMessage : String
  */
 
 public class OSGiBlueprintEvent implements TransferObject{
@@ -87,7 +65,7 @@ public class OSGiBlueprintEvent implemen
 
 
     /**
-     * Construct an OSGiBlueprintEvent from the supplied <link>BlueprintEvent</link>
+     * Construct an OSGiBlueprintEvent from the supplied BlueprintEvent
      *
      * @param event
      *            - the event to represent