]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Guids/GuidsIdentification.java
1. Provide "Find" function for Ppi/Protocol/Guid/Pcd/LibraryClass.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / Guids / GuidsIdentification.java
index d167e06fe5fddff9b9bea05131fcf85879d8f543..4affae979754e77728e8eb646acb3853d30953ca 100644 (file)
@@ -17,6 +17,9 @@ package org.tianocore.frameworkwizard.module.Identifications.Guids;
 \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 GuidsIdentification {\r
 \r
     //\r
@@ -31,6 +34,10 @@ public class GuidsIdentification {
     private String featureFlag = null;\r
     \r
     private String help = null;\r
+    \r
+    private ModuleIdentification belongModule = null;\r
+    \r
+    private PackageIdentification declaredBy = null;\r
 \r
     public GuidsIdentification(String arg0, String arg1, String arg2, Vector<String> arg3, String arg4) {\r
         this.name = (arg0 == null ? "" : arg0);\r
@@ -86,4 +93,20 @@ public class GuidsIdentification {
     public void setHelp(String help) {\r
         this.help = help;\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