]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdCodedIdentification.java
1. Provide "Find" function for Ppi/Protocol/Guid/Pcd/LibraryClass.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / PcdCoded / PcdCodedIdentification.java
index 02ae08d4d7ae5ccee3b06d40c2989f2e793a7e6f..cf4b5bb16fd9e1ebd65c191827b8a9519e8a7de9 100644 (file)
@@ -17,6 +17,9 @@ package org.tianocore.frameworkwizard.module.Identifications.PcdCoded;
 \r
 import java.util.Vector;\r
 \r
+import org.tianocore.frameworkwizard.module.Identifications.ModuleIdentification;\r
+import org.tianocore.frameworkwizard.packaging.PackageIdentification;\r
+\r
 public class PcdCodedIdentification {\r
 \r
     //\r
@@ -37,6 +40,10 @@ public class PcdCodedIdentification {
     private String type = null;\r
     \r
     private String usage = null;\r
+    \r
+    private ModuleIdentification belongModule = null;\r
+    \r
+    private PackageIdentification declaredBy = null;\r
 \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
@@ -119,4 +126,20 @@ public class PcdCodedIdentification {
     public void setUsage(String usage) {\r
         this.usage = usage;\r
     }\r
+    \r
+    public ModuleIdentification getBelongModule() {\r
+        return belongModule;\r
+    }\r
+\r
+    public void setBelongModule(ModuleIdentification belongModule) {\r
+        this.belongModule = belongModule;\r
+    }\r
+\r
+    public PackageIdentification getDeclaredBy() {\r
+        return declaredBy;\r
+    }\r
+\r
+    public void setDeclaredBy(PackageIdentification declaredBy) {\r
+        this.declaredBy = declaredBy;\r
+    }\r
 }\r