X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FJava%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fmodule%2FIdentifications%2FPcdCoded%2FPcdCodedIdentification.java;h=13ed398fa341749e2a765f10bf9fea70188560c2;hp=cf4b5bb16fd9e1ebd65c191827b8a9519e8a7de9;hb=d12f87d3b1c080026adbdfefb459fdaf3072eab3;hpb=e47b06c3397ccc13bf6fa5a471ed20f1ccc758a9 diff --git a/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java b/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java index cf4b5bb16f..13ed398fa3 100644 --- a/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java +++ b/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java @@ -41,6 +41,12 @@ public class PcdCodedIdentification { private String usage = null; + private String tokenSpaceGuidCName = null; + + private String token = null; + + private String datumType = null; + private ModuleIdentification belongModule = null; private PackageIdentification declaredBy = null; @@ -142,4 +148,28 @@ public class PcdCodedIdentification { public void setDeclaredBy(PackageIdentification declaredBy) { this.declaredBy = declaredBy; } + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token; + } + + public String getTokenSpaceGuidCName() { + return tokenSpaceGuidCName; + } + + public void setTokenSpaceGuidCName(String tokenSpaceGuidCName) { + this.tokenSpaceGuidCName = tokenSpaceGuidCName; + } + + public String getDatumType() { + return datumType; + } + + public void setDatumType(String datumType) { + this.datumType = datumType; + } }