]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java
1. PcdUsage is added to PCD entry in schema so wizard tool is also updated to support...
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / PcdCoded / PcdCodedIdentification.java
index 7f2f377757eb91da8c5f6903134f0edc73f24710..02ae08d4d7ae5ccee3b06d40c2989f2e793a7e6f 100644 (file)
@@ -35,8 +35,10 @@ public class PcdCodedIdentification {
     private String help = null;\r
     \r
     private String type = null;\r
+    \r
+    private String usage = null;\r
 \r
-    public PcdCodedIdentification(String arg0, String arg1, String arg2, Vector<String> arg3, String arg4, String arg5, String arg6) {\r
+    public PcdCodedIdentification(String arg0, String arg1, String arg2, Vector<String> arg3, String arg4, String arg5, String arg6, String arg7) {\r
         this.name = (arg0 == null ? "" : arg0);\r
         this.guid = (arg1 == null ? "" : arg1);\r
         this.featureFlag = (arg2 == null ? "" : arg2);\r
@@ -44,6 +46,7 @@ public class PcdCodedIdentification {
         this.value = (arg4 == null ? "" : arg4);\r
         this.help = (arg5 == null ? "" : arg5);\r
         this.type = (arg6 == null ? "" : arg6);\r
+        this.usage = (arg7 == null ? "" : arg7);\r
     }\r
 \r
     public String getFeatureFlag() {\r
@@ -108,4 +111,12 @@ public class PcdCodedIdentification {
     public void setValue(String value) {\r
         this.value = value;\r
     }\r
+\r
+    public String getUsage() {\r
+        return usage;\r
+    }\r
+\r
+    public void setUsage(String usage) {\r
+        this.usage = usage;\r
+    }\r
 }\r