]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Protocols/ProtocolsIdentification.java
1. Provide "Find" function for Ppi/Protocol/Guid/Pcd/LibraryClass.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / Protocols / ProtocolsIdentification.java
index deaa71dd09566681cb6582e0638aa025148a3c31..685c6d1b6e15673bc942e91519ee72b73575ef78 100644 (file)
@@ -17,6 +17,9 @@ package org.tianocore.frameworkwizard.module.Identifications.Protocols;
 \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 ProtocolsIdentification {\r
 \r
     //\r
@@ -33,6 +36,10 @@ public class ProtocolsIdentification {
     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 ProtocolsIdentification(String arg0, String arg1, String arg2, String arg3, Vector<String> arg4, String arg5) {\r
         this.name = (arg0 == null ? "" : arg0);\r
@@ -97,4 +104,20 @@ public class ProtocolsIdentification {
     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