replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / service / notification / android / notification-service / src / main / java / org / iotivity / service / ns / common / MediaContents.java
index df5318f..4766ff0 100755 (executable)
@@ -23,28 +23,26 @@ package org.iotivity.service.ns.common;
 import android.util.Log;
 
 /**
-  * @class   MediaContents
 * @brief   This class provides implementation of Notification MediaContents object.
-  */
-public class MediaContents
-{
-    private static final String LOG_TAG = "NotificationService_MediaContents";
-
-    public String mIconImage = null;
-
-    public MediaContents(String iconImage)
-    {
-        Log.i (LOG_TAG, "MediaContents()");
+ *
* This class provides implementation of Notification MediaContents object.
+ *
+ */
+public class MediaContents {
+
+    private static final String LOG_TAG    = "NotificationService_MediaContents";
+
+    private String               mIconImage = null;
+
+    public MediaContents(String iconImage) {
+        Log.i(LOG_TAG, "MediaContents()");
         mIconImage = iconImage;
     }
 
-    public String getIconImage()
-    {
+    public String getIconImage() {
         return mIconImage;
     }
 
-    public void setIconImage(String iconImage)
-    {
+    public void setIconImage(String iconImage) {
         mIconImage = iconImage;
     }
 }