]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Java/Source/GenBuild/org/tianocore/build/id/ModuleIdentification.java
Corrected some comments for the changed code.
[mirror_edk2.git] / Tools / Java / Source / GenBuild / org / tianocore / build / id / ModuleIdentification.java
index dfcbeae76a1d1a3bcea689c9e0600290fe3514dc..dc5f87bab41faf743383a9addb93d3aed5661d79 100644 (file)
@@ -189,25 +189,44 @@ public class ModuleIdentification extends Identification {
     public void setModuleType(String moduleType) {\r
         this.moduleType = moduleType;\r
     }\r
-    \r
+\r
+    /**\r
+       @return String The module name\r
+     **/\r
     public String getName() {\r
         return name;\r
     }\r
 \r
+    /**\r
+       @return boolean\r
+     **/\r
     public boolean hasConstructor() {\r
         return constructor != "";\r
     }\r
 \r
+    /**\r
+       @return boolean\r
+     */\r
     public boolean hasDestructor() {\r
         return destructor != "";\r
     }\r
 \r
+    /**\r
+       Set the constructor function name if this module is a library\r
+\r
+       @param name\r
+     */\r
     public void setConstructor(String name) {\r
         if (name != null) {\r
             constructor = name;\r
         }\r
     }\r
 \r
+    /**\r
+       Set the destructor function name if this module is a library\r
+\r
+       @param name\r
+     */\r
     public void setDestructor(String name) {\r
         if (name != null) {\r
             destructor = name;\r