X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fmodule%2FIdentifications%2FPcdCoded%2FPcdCodedIdentification.java;h=02ae08d4d7ae5ccee3b06d40c2989f2e793a7e6f;hp=7f2f377757eb91da8c5f6903134f0edc73f24710;hb=fd16c6d5d404091051d010fe52a69196c9b89f1e;hpb=eb227e96bd06a5b0f2f933187a679e7fb3382cd9 diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java index 7f2f377757..02ae08d4d7 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java @@ -35,8 +35,10 @@ public class PcdCodedIdentification { private String help = null; private String type = null; + + private String usage = null; - public PcdCodedIdentification(String arg0, String arg1, String arg2, Vector arg3, String arg4, String arg5, String arg6) { + public PcdCodedIdentification(String arg0, String arg1, String arg2, Vector arg3, String arg4, String arg5, String arg6, String arg7) { this.name = (arg0 == null ? "" : arg0); this.guid = (arg1 == null ? "" : arg1); this.featureFlag = (arg2 == null ? "" : arg2); @@ -44,6 +46,7 @@ public class PcdCodedIdentification { this.value = (arg4 == null ? "" : arg4); this.help = (arg5 == null ? "" : arg5); this.type = (arg6 == null ? "" : arg6); + this.usage = (arg7 == null ? "" : arg7); } public String getFeatureFlag() { @@ -108,4 +111,12 @@ public class PcdCodedIdentification { public void setValue(String value) { this.value = value; } + + public String getUsage() { + return usage; + } + + public void setUsage(String usage) { + this.usage = usage; + } }