javacommons/utils/javasrc/com/nokia/mj/impl/utils/Id.java
changeset 80 d6dafc5d983f
parent 72 1f0034e370aa
--- a/javacommons/utils/javasrc/com/nokia/mj/impl/utils/Id.java	Mon Oct 04 11:29:25 2010 +0300
+++ b/javacommons/utils/javasrc/com/nokia/mj/impl/utils/Id.java	Fri Oct 15 12:29:39 2010 +0300
@@ -19,8 +19,7 @@
 package com.nokia.mj.impl.utils;
 
 /**
- * Localisation Identifier. This class is used to hide platform localisation
- * specifics.
+ * Localisation identifier.
  */
 public class Id
 {
@@ -34,6 +33,12 @@
     {
     }
 
+    /**
+     * Localisation identifier with Avkon and Qt type text identifiers.
+     *
+     * @param aAvkonLocString text id fof Avkon based localisation
+     * @param aQtLocString text id for Qt based localisation
+     */
     public Id(String aAvkonLocString, String aQtLocString)
     {
         this.iAvkonLocString = aAvkonLocString;
@@ -48,7 +53,7 @@
         }
         else
         {
-            return iAvkonLocString;       
+            return iAvkonLocString;
         }
-    }     
+    }
 }