update comments for javadoc
authorRami Jung <rami.jung@samsung.com>
Tue, 6 Oct 2015 18:19:11 +0000 (03:19 +0900)
committerMadan Lanka <lanka.madan@samsung.com>
Wed, 7 Oct 2015 06:58:36 +0000 (06:58 +0000)
changing comments to avoid errors while generating javadoc
such as </br>

Change-Id: I10c57894dcdc4642d600a11dc9fe224679c2aac9
Signed-off-by: Rami Jung <rami.jung@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/3675
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Madan Lanka <lanka.madan@samsung.com>
service/resource-hosting/android/resource_hosting/src/org/iotivity/ResourceHosting/ResourceHosting.java

index 0c73ac3..eb91849 100755 (executable)
@@ -25,7 +25,7 @@ import java.lang.String;
  * To execute resource hosting function for android sample application .
  *
  * @author Copyright 2015 Samsung Electronics All Rights Reserved.
- * @see className class : ResourceHosting</br>
+ * @see className class : ResourceHosting
  *
  */
 
@@ -34,20 +34,14 @@ public class ResourceHosting {
     /**
      * jni function - OicCorrdinatorstart() method.
      *
-     * @see Class class :
-     *      org_iotivity_resourcehosting_ResourceHosting</br>
-     * @see Method method : OICCoordinatorStart</br>
-     * @see Signature signature : ()V</br>
+     * @see ResourceHosting
      */
     public native int OICCoordinatorStart();
 
     /**
      * jni function - OICCoordinatorStop() method.
      *
-     * @see Class class :
-     *      org_iotivity_resourcehosting_ResourceHosting</br>
-     * @see Method method : OICCoordinatorStop</br>
-     * @see signature signature : ()V</br>
+     * @see ResourceHosting
      */
     public native int OICCoordinatorStop();
 
@@ -55,12 +49,9 @@ public class ResourceHosting {
      * jni function - ResourceHostingInit() method in order to execute
      * OICCoordinatorStart() method.
      *
-     * @see Class class :
-     *      org_iotivity_resourcehosting_ResourceHosting</br>
-     * @see Method method : ResourceHostingInit</br>
+     * @see ResourceHosting
      * @param addr
      *            ipAddress
-     * @see signature signature : (Ljava/lang/String;)V</br>
      */
     public native int ResourceHostingInit(String addr);
 
@@ -68,10 +59,7 @@ public class ResourceHosting {
      * jni function - ResourceHostingTerminate() method in order to terminate
      * resource hosting
      *
-     * @see Class class :
-     *      org_iotivity_resourcehosting_ResourceHosting</br>
-     * @see Method method : ResourceHostingTerminate</br>
-     * @see signature signature : ()V</br>
+     * @see ResourceHosting
      */
     public native int ResourceHostingTerminate();