]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Events/EventsIdentification.java
1. Fix the bug missing TokenSpaceGuidCName when editing a pcd entry in Msa
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / Events / EventsIdentification.java
index 569123232d1f45e227cb4518a4cd2e5e734dea3e..24e168335deff0760eb58553fd7a8545210dce87 100644 (file)
@@ -33,14 +33,17 @@ public class EventsIdentification {
     private String featureFlag = null;\r
     \r
     private String help = null;\r
+    \r
+    private String group = null;\r
 \r
-    public EventsIdentification(String arg0, String arg1, String arg2, String arg3, Vector<String> arg4, String arg5) {\r
+    public EventsIdentification(String arg0, String arg1, String arg2, String arg3, Vector<String> arg4, String arg5, String arg6) {\r
         this.name = (arg0 == null ? "" : arg0);\r
         this.type = (arg1 == null ? "" : arg1);\r
         this.usage = (arg2 == null ? "" : arg2);\r
         this.featureFlag = (arg3 == null ? "" : arg3);\r
         this.supArchList = arg4;\r
         this.help = (arg5 == null ? "" : arg5);\r
+        this.group = (arg6 == null ? "" : arg6);\r
     }\r
 \r
     public String getFeatureFlag() {\r
@@ -97,4 +100,12 @@ public class EventsIdentification {
     public void setHelp(String help) {\r
         this.help = help;\r
     }\r
+\r
+    public String getGroup() {\r
+        return group;\r
+    }\r
+\r
+    public void setGroup(String group) {\r
+        this.group = group;\r
+    }\r
 }\r