Cleanup documentation warnings in the resourcecontainer java code
authorGeorge Nash <george.nash@intel.com>
Fri, 13 Jan 2017 23:52:01 +0000 (15:52 -0800)
committerRick Bell <richard.s.bell@intel.com>
Fri, 20 Jan 2017 17:26:36 +0000 (17:26 +0000)
Change-Id: Ia19f5d6470b6ea8ef8018bd40dc5edf13808e56b
Signed-off-by: George Nash <george.nash@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/16407
Tested-by: jenkins-iotivity <jenkins@iotivity.org>
Reviewed-by: Rick Bell <richard.s.bell@intel.com>
service/resource-container/android/resource-container/src/main/java/org/iotivity/service/resourcecontainer/BundleResource.java
service/resource-container/android/resource-container/src/main/java/org/iotivity/service/resourcecontainer/RcsResourceAttributes.java
service/resource-container/android/resource-container/src/main/java/org/iotivity/service/resourcecontainer/RcsResourceContainer.java
service/resource-container/android/resource-container/src/main/java/org/iotivity/service/resourcecontainer/RcsValue.java

index 93304f7..551bd35 100644 (file)
@@ -135,6 +135,8 @@ public abstract class BundleResource {
 
     /**
      * Retrieve the attribute (map to read command)
+     * 
+     * @return RcsResourceAttributes containing the attributes
      */
     public abstract RcsResourceAttributes handleGetAttributesRequest();
 
index f8ae251..a2f8b2c 100644 (file)
@@ -193,6 +193,7 @@ public final class RcsResourceAttributes
     
     /**
      * Updates all properties provided as parameter.
+     * @param attrs the attributes to update
      */
     public void put(RcsResourceAttributes attrs){
         for (final String key : attrs.keySet()) {
index 0564904..73d61a1 100644 (file)
@@ -119,7 +119,7 @@ public class RcsResourceContainer implements RcsResourceContainerBundleAPI {
      * @param configFile
      *            configuration File that contains the Bundle/Bundles
      *            information.
-     *
+     * @return collection of container bundles
      */
     public List<RcsBundleInfo> startContainer(String configFile) {
         if(configFile == null || configFile.isEmpty()){
index f21ccc9..d411257 100644 (file)
@@ -88,6 +88,8 @@ public final class RcsValue {
          *
          * For non sequence types, it is equivalent to calling {@link #getId()}.
          *
+         * @param t the type identifier to get a base type of
+         *
          * @return identifier of type
          *
          * @see getDepth
@@ -100,7 +102,9 @@ public final class RcsValue {
         /**
          * Returns the depth of a type.
          *
-         * The return will be zero for non sequence types.
+         * @param t type to find the depth of
+         *
+         * @return the depth of a type. Will be zero for non sequence types.
          *
          * @see getBaseTypeId
          */
@@ -112,6 +116,8 @@ public final class RcsValue {
          * Factory method to create Type instance from an object.
          * Note that object must be a supported type by RcsValue.
          *
+         * @param obj object to create a type instance from
+         *
          * @return An instance that has TypeId for obj.
          *
          * @throws NullPointerException
@@ -132,6 +138,8 @@ public final class RcsValue {
          * Factory method to create Type instance from a class.
          * Note that class must be a supported type by RcsValue.
          *
+         * @param cls class to create Type instance from
+         *
          * @return An instance that has TypeId for class.
          *
          * @throws NullPointerException
@@ -541,6 +549,7 @@ public final class RcsValue {
     /**
      * Returns the value as T.
      *
+     * @param <T> the return type
      * @return a value as T
      *
      * @throws ClassCastException