X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fmodule%2FIdentifications%2FProtocols%2FProtocolsIdentification.java;fp=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fmodule%2FIdentifications%2FProtocols%2FProtocolsIdentification.java;h=685c6d1b6e15673bc942e91519ee72b73575ef78;hb=55e83b18d8d46470c05701cb410f1bc49e33ffc3;hp=deaa71dd09566681cb6582e0638aa025148a3c31;hpb=7085597507e62932b823a97a590dd05f2716f82e;p=mirror_edk2.git diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Protocols/ProtocolsIdentification.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Protocols/ProtocolsIdentification.java index deaa71dd09..685c6d1b6e 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Protocols/ProtocolsIdentification.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Protocols/ProtocolsIdentification.java @@ -17,6 +17,9 @@ package org.tianocore.frameworkwizard.module.Identifications.Protocols; import java.util.Vector; +import org.tianocore.frameworkwizard.module.Identifications.ModuleIdentification; +import org.tianocore.frameworkwizard.packaging.PackageIdentification; + public class ProtocolsIdentification { // @@ -33,6 +36,10 @@ public class ProtocolsIdentification { private String featureFlag = null; private String help = null; + + private ModuleIdentification belongModule = null; + + private PackageIdentification declaredBy = null; public ProtocolsIdentification(String arg0, String arg1, String arg2, String arg3, Vector arg4, String arg5) { this.name = (arg0 == null ? "" : arg0); @@ -97,4 +104,20 @@ public class ProtocolsIdentification { public void setHelp(String help) { this.help = help; } + + public ModuleIdentification getBelongModule() { + return belongModule; + } + + public void setBelongModule(ModuleIdentification belongModule) { + this.belongModule = belongModule; + } + + public PackageIdentification getDeclaredBy() { + return declaredBy; + } + + public void setDeclaredBy(PackageIdentification declaredBy) { + this.declaredBy = declaredBy; + } }