BaseTools: Clean up source files
1. Do not use tab characters 2. No trailing white space in one line 3. All files must end with CRLF Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
## @file
|
||||
# This file is used to define common items of class object
|
||||
#
|
||||
# Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
@@ -23,10 +23,10 @@ from Library.DataType import TAB_LANGUAGE_EN_US
|
||||
class HelpTextObject(object):
|
||||
def __init__(self):
|
||||
self.HelpText = TextObject()
|
||||
|
||||
|
||||
def SetHelpText(self, HelpText):
|
||||
self.HelpText = HelpText
|
||||
|
||||
|
||||
def GetHelpText(self):
|
||||
return self.HelpText
|
||||
|
||||
@@ -37,10 +37,10 @@ class HelpTextObject(object):
|
||||
class HelpTextListObject(object):
|
||||
def __init__(self):
|
||||
self.HelpTextList = []
|
||||
|
||||
|
||||
def SetHelpTextList(self, HelpTextList):
|
||||
self.HelpTextList = HelpTextList
|
||||
|
||||
|
||||
def GetHelpTextList(self):
|
||||
return self.HelpTextList
|
||||
|
||||
@@ -51,13 +51,13 @@ class HelpTextListObject(object):
|
||||
class PromptListObject(object):
|
||||
def __init__(self):
|
||||
self.PromptList = []
|
||||
|
||||
|
||||
def SetPromptList(self, PromptList):
|
||||
self.PromptList = PromptList
|
||||
|
||||
|
||||
def GetPromptList(self):
|
||||
return self.PromptList
|
||||
|
||||
|
||||
## CommonPropertiesObject
|
||||
#
|
||||
# This class defined common attribution used in Module/Platform/Package files
|
||||
@@ -77,7 +77,7 @@ class CommonPropertiesObject(HelpTextObject, HelpTextListObject):
|
||||
self.GuidValue = ''
|
||||
HelpTextObject.__init__(self)
|
||||
HelpTextListObject.__init__(self)
|
||||
|
||||
|
||||
def SetUsage(self, Usage):
|
||||
self.Usage = Usage
|
||||
|
||||
@@ -95,10 +95,10 @@ class CommonPropertiesObject(HelpTextObject, HelpTextListObject):
|
||||
|
||||
def GetSupArchList(self):
|
||||
return self.SupArchList
|
||||
|
||||
|
||||
def SetGuidValue(self, GuidValue):
|
||||
self.GuidValue = GuidValue
|
||||
|
||||
|
||||
def GetGuidValue(self):
|
||||
return self.GuidValue
|
||||
|
||||
@@ -199,11 +199,11 @@ class BinaryHeaderObject(object):
|
||||
|
||||
def GetBinaryHeaderLicense(self):
|
||||
return self.BinaryHeaderLicenseList
|
||||
|
||||
|
||||
## ClonedRecordObject
|
||||
#
|
||||
# This class defined ClonedRecord items used in Module/Platform/Package files
|
||||
#
|
||||
#
|
||||
# @param object: Inherited from object class
|
||||
#
|
||||
class ClonedRecordObject(object):
|
||||
@@ -285,7 +285,7 @@ class FileNameObject(CommonPropertiesObject):
|
||||
self.FileType = ''
|
||||
self.Filename = ''
|
||||
CommonPropertiesObject.__init__(self)
|
||||
|
||||
|
||||
def SetFileType(self, FileType):
|
||||
self.FileType = FileType
|
||||
|
||||
@@ -306,10 +306,10 @@ class FileNameObject(CommonPropertiesObject):
|
||||
#
|
||||
class FileObject(object):
|
||||
def __init__(self):
|
||||
self.Executable = ''
|
||||
self.Executable = ''
|
||||
self.Uri = ''
|
||||
self.OsType = ''
|
||||
|
||||
|
||||
def SetExecutable(self, Executable):
|
||||
self.Executable = Executable
|
||||
|
||||
@@ -327,8 +327,8 @@ class FileObject(object):
|
||||
|
||||
def GetOS(self):
|
||||
return self.OsType
|
||||
|
||||
##
|
||||
|
||||
##
|
||||
# MiscFileObject is used for xml
|
||||
#
|
||||
# @param CommonHeaderObject: Inherited from CommonHeaderObject class
|
||||
@@ -336,18 +336,18 @@ class FileObject(object):
|
||||
class MiscFileObject(CommonHeaderObject):
|
||||
def __init__(self):
|
||||
self.Name = ''
|
||||
self.FileList = []
|
||||
self.FileList = []
|
||||
CommonHeaderObject.__init__(self)
|
||||
|
||||
|
||||
def SetName(self, Name):
|
||||
self.Name = Name
|
||||
|
||||
|
||||
def GetName(self):
|
||||
return self.Name
|
||||
|
||||
|
||||
def SetFileList(self, FileList):
|
||||
self.FileList = FileList
|
||||
|
||||
|
||||
def GetFileList(self):
|
||||
return self.FileList
|
||||
|
||||
@@ -397,7 +397,7 @@ class IdentificationObject(GuidVersionObject):
|
||||
self.ModulePath = ''
|
||||
self.CombinePath = ''
|
||||
GuidVersionObject.__init__(self)
|
||||
|
||||
|
||||
def SetName(self, Name):
|
||||
self.Name = Name
|
||||
|
||||
@@ -448,7 +448,7 @@ class IdentificationObject(GuidVersionObject):
|
||||
|
||||
## GuidProtocolPpiCommonObject
|
||||
#
|
||||
# This class defined Guid, Protocol and Ppi like items used in
|
||||
# This class defined Guid, Protocol and Ppi like items used in
|
||||
# Module/Platform/Package files
|
||||
#
|
||||
# @param CommonPropertiesObject: Inherited from CommonPropertiesObject class
|
||||
@@ -460,7 +460,7 @@ class GuidProtocolPpiCommonObject(CommonPropertiesObject):
|
||||
self.Guid = ''
|
||||
self.SupModuleList = []
|
||||
CommonPropertiesObject.__init__(self)
|
||||
|
||||
|
||||
def SetName(self, Name):
|
||||
self.Name = Name
|
||||
|
||||
@@ -512,7 +512,7 @@ class GuidObject(GuidProtocolPpiCommonObject):
|
||||
#
|
||||
# This class defined Protocol item used in Module/Platform/Package files
|
||||
#
|
||||
# @param GuidProtocolPpiCommonObject: Inherited from
|
||||
# @param GuidProtocolPpiCommonObject: Inherited from
|
||||
# GuidProtocolPpiCommonObject
|
||||
#
|
||||
class ProtocolObject(GuidProtocolPpiCommonObject):
|
||||
@@ -529,7 +529,7 @@ class ProtocolObject(GuidProtocolPpiCommonObject):
|
||||
#
|
||||
# This class defined Ppi item used in Module/Platform/Package files
|
||||
#
|
||||
# @param GuidProtocolPpiCommonObject: Inherited from
|
||||
# @param GuidProtocolPpiCommonObject: Inherited from
|
||||
# GuidProtocolPpiCommonObject
|
||||
#
|
||||
class PpiObject(GuidProtocolPpiCommonObject):
|
||||
@@ -566,13 +566,13 @@ class UserExtensionObject(object):
|
||||
self.BinaryLicenseList = []
|
||||
self.UniLangDefsList = []
|
||||
#
|
||||
# { Statement : Arch , ... }
|
||||
# { Statement : Arch , ... }
|
||||
#
|
||||
self.DefinesDict = {}
|
||||
self.DefinesDict = {}
|
||||
#
|
||||
# { Arch : Statement , ... }
|
||||
#
|
||||
self.BuildOptionDict = {}
|
||||
self.BuildOptionDict = {}
|
||||
self.IncludesDict = {}
|
||||
self.SourcesDict = {}
|
||||
self.BinariesDict = {}
|
||||
@@ -581,40 +581,40 @@ class UserExtensionObject(object):
|
||||
#
|
||||
self.Statement = ''
|
||||
self.SupArchList = []
|
||||
|
||||
|
||||
def SetStatement(self, Statement):
|
||||
self.Statement = Statement
|
||||
|
||||
|
||||
def GetStatement(self):
|
||||
return self.Statement
|
||||
|
||||
def SetSupArchList(self, ArchList):
|
||||
self.SupArchList = ArchList
|
||||
|
||||
|
||||
def GetSupArchList(self):
|
||||
return self.SupArchList
|
||||
|
||||
|
||||
def SetUserID(self, UserID):
|
||||
self.UserID = UserID
|
||||
|
||||
|
||||
def GetUserID(self):
|
||||
return self.UserID
|
||||
|
||||
|
||||
def SetIdentifier(self, Identifier):
|
||||
self.Identifier = Identifier
|
||||
|
||||
|
||||
def GetIdentifier(self):
|
||||
return self.Identifier
|
||||
|
||||
|
||||
def SetUniLangDefsList(self, UniLangDefsList):
|
||||
self.UniLangDefsList = UniLangDefsList
|
||||
|
||||
|
||||
def GetUniLangDefsList(self):
|
||||
return self.UniLangDefsList
|
||||
|
||||
|
||||
def SetBinaryAbstract(self, BinaryAbstractList):
|
||||
self.BinaryAbstractList = BinaryAbstractList
|
||||
|
||||
|
||||
def GetBinaryAbstract(self, Lang=None):
|
||||
if Lang:
|
||||
for (Key, Value) in self.BinaryAbstractList:
|
||||
@@ -623,10 +623,10 @@ class UserExtensionObject(object):
|
||||
return None
|
||||
else:
|
||||
return self.BinaryAbstractList
|
||||
|
||||
|
||||
def SetBinaryDescription(self, BinaryDescriptionList):
|
||||
self.BinaryDescriptionList = BinaryDescriptionList
|
||||
|
||||
|
||||
def GetBinaryDescription(self, Lang=None):
|
||||
if Lang:
|
||||
for (Key, Value) in self.BinaryDescriptionList:
|
||||
@@ -635,10 +635,10 @@ class UserExtensionObject(object):
|
||||
return None
|
||||
else:
|
||||
return self.BinaryDescriptionList
|
||||
|
||||
|
||||
def SetBinaryCopyright(self, BinaryCopyrightList):
|
||||
self.BinaryCopyrightList = BinaryCopyrightList
|
||||
|
||||
|
||||
def GetBinaryCopyright(self, Lang=None):
|
||||
if Lang:
|
||||
for (Key, Value) in self.BinaryCopyrightList:
|
||||
@@ -647,10 +647,10 @@ class UserExtensionObject(object):
|
||||
return None
|
||||
else:
|
||||
return self.BinaryCopyrightList
|
||||
|
||||
|
||||
def SetBinaryLicense(self, BinaryLicenseList):
|
||||
self.BinaryLicenseList = BinaryLicenseList
|
||||
|
||||
|
||||
def GetBinaryLicense(self, Lang=None):
|
||||
if Lang:
|
||||
for (Key, Value) in self.BinaryLicenseList:
|
||||
@@ -659,34 +659,34 @@ class UserExtensionObject(object):
|
||||
return None
|
||||
else:
|
||||
return self.BinaryLicenseList
|
||||
|
||||
|
||||
def SetDefinesDict(self, DefinesDict):
|
||||
self.DefinesDict = DefinesDict
|
||||
|
||||
|
||||
def GetDefinesDict(self):
|
||||
return self.DefinesDict
|
||||
|
||||
|
||||
def SetBuildOptionDict(self, BuildOptionDict):
|
||||
self.BuildOptionDict = BuildOptionDict
|
||||
|
||||
|
||||
def GetBuildOptionDict(self):
|
||||
return self.BuildOptionDict
|
||||
|
||||
def SetIncludesDict(self, IncludesDict):
|
||||
self.IncludesDict = IncludesDict
|
||||
|
||||
|
||||
def GetIncludesDict(self):
|
||||
return self.IncludesDict
|
||||
|
||||
def SetSourcesDict(self, SourcesDict):
|
||||
self.SourcesDict = SourcesDict
|
||||
|
||||
|
||||
def GetSourcesDict(self):
|
||||
return self.SourcesDict
|
||||
|
||||
def SetBinariesDict(self, BinariesDict):
|
||||
self.BinariesDict = BinariesDict
|
||||
|
||||
|
||||
def GetBinariesDict(self):
|
||||
return self.BinariesDict
|
||||
|
||||
@@ -703,28 +703,28 @@ class LibraryClassObject(CommonPropertiesObject):
|
||||
self.SupModuleList = []
|
||||
self.RecommendedInstance = GuidVersionObject()
|
||||
CommonPropertiesObject.__init__(self)
|
||||
|
||||
|
||||
def SetLibraryClass(self, LibraryClass):
|
||||
self.LibraryClass = LibraryClass
|
||||
|
||||
|
||||
def GetLibraryClass(self):
|
||||
return self.LibraryClass
|
||||
|
||||
|
||||
def SetSupModuleList(self, SupModuleList):
|
||||
self.SupModuleList = SupModuleList
|
||||
|
||||
|
||||
def GetSupModuleList(self):
|
||||
return self.SupModuleList
|
||||
|
||||
|
||||
def SetIncludeHeader(self, IncludeHeader):
|
||||
self.IncludeHeader = IncludeHeader
|
||||
|
||||
|
||||
def GetIncludeHeader(self):
|
||||
return self.IncludeHeader
|
||||
|
||||
|
||||
def SetRecommendedInstance(self, RecommendedInstance):
|
||||
self.RecommendedInstance = RecommendedInstance
|
||||
|
||||
|
||||
def GetRecommendedInstance(self):
|
||||
return self.RecommendedInstance
|
||||
|
||||
@@ -748,69 +748,69 @@ class PcdErrorObject(object):
|
||||
|
||||
def SetValidValue(self, ValidValue):
|
||||
self.ValidValue = ValidValue
|
||||
|
||||
|
||||
def GetValidValue(self):
|
||||
return self.ValidValue
|
||||
|
||||
|
||||
def SetValidValueLang(self, ValidValueLang):
|
||||
self.ValidValueLang = ValidValueLang
|
||||
|
||||
|
||||
def GetValidValueLang(self):
|
||||
return self.ValidValueLang
|
||||
|
||||
|
||||
def SetValidValueRange(self, ValidValueRange):
|
||||
self.ValidValueRange = ValidValueRange
|
||||
|
||||
|
||||
def GetValidValueRange(self):
|
||||
return self.ValidValueRange
|
||||
|
||||
|
||||
def SetExpression(self, Expression):
|
||||
self.Expression = Expression
|
||||
|
||||
|
||||
def GetExpression(self):
|
||||
return self.Expression
|
||||
|
||||
|
||||
def SetErrorNumber(self, ErrorNumber):
|
||||
self.ErrorNumber = ErrorNumber
|
||||
|
||||
|
||||
def GetErrorNumber(self):
|
||||
return self.ErrorNumber
|
||||
|
||||
|
||||
def SetErrorMessageList(self, ErrorMessageList):
|
||||
self.ErrorMessageList = ErrorMessageList
|
||||
|
||||
|
||||
def GetErrorMessageList(self):
|
||||
return self.ErrorMessageList
|
||||
|
||||
|
||||
def SetTokenSpaceGuidCName(self, TokenSpaceGuidCName):
|
||||
self.TokenSpaceGuidCName = TokenSpaceGuidCName
|
||||
|
||||
|
||||
def GetTokenSpaceGuidCName(self):
|
||||
return self.TokenSpaceGuidCName
|
||||
|
||||
|
||||
def SetCName(self, CName):
|
||||
self.CName = CName
|
||||
|
||||
|
||||
def GetCName(self):
|
||||
return self.CName
|
||||
|
||||
|
||||
def SetFileLine(self, FileLine):
|
||||
self.FileLine = FileLine
|
||||
|
||||
|
||||
def GetFileLine(self):
|
||||
return self.FileLine
|
||||
|
||||
|
||||
def SetLineNum(self, LineNum):
|
||||
self.LineNum = LineNum
|
||||
|
||||
|
||||
def GetLineNum(self):
|
||||
return self.LineNum
|
||||
|
||||
|
||||
|
||||
|
||||
## IncludeObject
|
||||
#
|
||||
# This class defined Include item used in Module/Platform/Package files
|
||||
#
|
||||
#
|
||||
# @param CommonPropertiesObject: Inherited from CommonPropertiesObject class
|
||||
#
|
||||
class IncludeObject(CommonPropertiesObject):
|
||||
@@ -820,31 +820,31 @@ class IncludeObject(CommonPropertiesObject):
|
||||
self.SupModuleList = []
|
||||
self.Comment = ''
|
||||
CommonPropertiesObject.__init__(self)
|
||||
|
||||
|
||||
def SetFilePath(self, FilePath):
|
||||
self.FilePath = FilePath
|
||||
|
||||
|
||||
def GetFilePath(self):
|
||||
return self.FilePath
|
||||
|
||||
|
||||
def SetModuleType(self, ModuleType):
|
||||
self.ModuleType = ModuleType
|
||||
|
||||
|
||||
def GetModuleType(self):
|
||||
return self.ModuleType
|
||||
|
||||
|
||||
def SetSupModuleList(self, SupModuleList):
|
||||
self.SupModuleList = SupModuleList
|
||||
|
||||
|
||||
def GetSupModuleList(self):
|
||||
return self.SupModuleList
|
||||
|
||||
return self.SupModuleList
|
||||
|
||||
def SetComment(self, Comment):
|
||||
self.Comment = Comment
|
||||
|
||||
|
||||
def GetComment(self):
|
||||
return self.Comment
|
||||
|
||||
return self.Comment
|
||||
|
||||
## PcdObject
|
||||
#
|
||||
# This class defined Pcd item used in Module/Platform/Package files
|
||||
@@ -874,86 +874,86 @@ class PcdObject(CommonPropertiesObject, HelpTextListObject, PromptListObject):
|
||||
self.Offset = ''
|
||||
self.ValidUsage = ''
|
||||
self.ItemType = ''
|
||||
self.PcdErrorsList = []
|
||||
self.SupModuleList = []
|
||||
self.PcdErrorsList = []
|
||||
self.SupModuleList = []
|
||||
CommonPropertiesObject.__init__(self)
|
||||
HelpTextListObject.__init__(self)
|
||||
PromptListObject.__init__(self)
|
||||
|
||||
|
||||
def SetPcdCName(self, PcdCName):
|
||||
self.PcdCName = PcdCName
|
||||
|
||||
|
||||
def GetPcdCName(self):
|
||||
return self.PcdCName
|
||||
|
||||
|
||||
def SetCName(self, CName):
|
||||
self.CName = CName
|
||||
|
||||
|
||||
def GetCName(self):
|
||||
return self.CName
|
||||
|
||||
|
||||
def SetToken(self, Token):
|
||||
self.Token = Token
|
||||
|
||||
|
||||
def GetOffset(self):
|
||||
return self.Offset
|
||||
|
||||
def SetOffset(self, Offset):
|
||||
self.Offset = Offset
|
||||
|
||||
|
||||
def GetToken(self):
|
||||
return self.Token
|
||||
|
||||
|
||||
def SetTokenSpaceGuidCName(self, TokenSpaceGuidCName):
|
||||
self.TokenSpaceGuidCName = TokenSpaceGuidCName
|
||||
|
||||
|
||||
def GetTokenSpaceGuidCName(self):
|
||||
return self.TokenSpaceGuidCName
|
||||
|
||||
|
||||
def SetTokenSpaceGuidValue(self, TokenSpaceGuidValue):
|
||||
self.TokenSpaceGuidValue = TokenSpaceGuidValue
|
||||
|
||||
|
||||
def GetTokenSpaceGuidValue(self):
|
||||
return self.TokenSpaceGuidValue
|
||||
|
||||
|
||||
def SetDatumType(self, DatumType):
|
||||
self.DatumType = DatumType
|
||||
|
||||
|
||||
def GetDatumType(self):
|
||||
return self.DatumType
|
||||
|
||||
|
||||
def SetMaxDatumSize(self, MaxDatumSize):
|
||||
self.MaxDatumSize = MaxDatumSize
|
||||
|
||||
|
||||
def GetMaxDatumSize(self):
|
||||
return self.MaxDatumSize
|
||||
|
||||
def SetDefaultValue(self, DefaultValue):
|
||||
self.DefaultValue = DefaultValue
|
||||
|
||||
|
||||
def GetDefaultValue(self):
|
||||
return self.DefaultValue
|
||||
|
||||
def SetValidUsage(self, ValidUsage):
|
||||
self.ValidUsage = ValidUsage
|
||||
|
||||
|
||||
def GetValidUsage(self):
|
||||
return self.ValidUsage
|
||||
|
||||
|
||||
def SetPcdErrorsList(self, PcdErrorsList):
|
||||
self.PcdErrorsList = PcdErrorsList
|
||||
|
||||
|
||||
def GetPcdErrorsList(self):
|
||||
return self.PcdErrorsList
|
||||
|
||||
def SetItemType(self, ItemType):
|
||||
self.ItemType = ItemType
|
||||
|
||||
|
||||
def GetItemType(self):
|
||||
return self.ItemType
|
||||
|
||||
def SetSupModuleList(self, SupModuleList):
|
||||
self.SupModuleList = SupModuleList
|
||||
|
||||
|
||||
def GetSupModuleList(self):
|
||||
return self.SupModuleList
|
||||
|
@@ -1,11 +1,11 @@
|
||||
## @file
|
||||
# This file is used to define a class object to describe a module
|
||||
#
|
||||
# Copyright (c) 2011 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
@@ -17,16 +17,16 @@ ModuleObject
|
||||
|
||||
##
|
||||
# Import Modules
|
||||
#
|
||||
#
|
||||
from Object.POM.CommonObject import CommonPropertiesObject
|
||||
from Object.POM.CommonObject import IdentificationObject
|
||||
from Object.POM.CommonObject import CommonHeaderObject
|
||||
from Object.POM.CommonObject import BinaryHeaderObject
|
||||
from Object.POM.CommonObject import HelpTextListObject
|
||||
from Object.POM.CommonObject import GuidVersionObject
|
||||
|
||||
|
||||
##
|
||||
|
||||
##
|
||||
# BootModeObject
|
||||
#
|
||||
class BootModeObject(CommonPropertiesObject, HelpTextListObject):
|
||||
@@ -34,10 +34,10 @@ class BootModeObject(CommonPropertiesObject, HelpTextListObject):
|
||||
self.SupportedBootModes = ''
|
||||
CommonPropertiesObject.__init__(self)
|
||||
HelpTextListObject.__init__(self)
|
||||
|
||||
|
||||
def SetSupportedBootModes(self, SupportedBootModes):
|
||||
self.SupportedBootModes = SupportedBootModes
|
||||
|
||||
|
||||
def GetSupportedBootModes(self):
|
||||
return self.SupportedBootModes
|
||||
|
||||
@@ -49,10 +49,10 @@ class EventObject(CommonPropertiesObject, HelpTextListObject):
|
||||
self.EventType = ''
|
||||
CommonPropertiesObject.__init__(self)
|
||||
HelpTextListObject.__init__(self)
|
||||
|
||||
|
||||
def SetEventType(self, EventType):
|
||||
self.EventType = EventType
|
||||
|
||||
|
||||
def GetEventType(self):
|
||||
return self.EventType
|
||||
|
||||
@@ -64,10 +64,10 @@ class HobObject(CommonPropertiesObject, HelpTextListObject):
|
||||
self.HobType = ''
|
||||
CommonPropertiesObject.__init__(self)
|
||||
HelpTextListObject.__init__(self)
|
||||
|
||||
|
||||
def SetHobType(self, HobType):
|
||||
self.HobType = HobType
|
||||
|
||||
|
||||
def GetHobType(self):
|
||||
return self.HobType
|
||||
|
||||
@@ -78,23 +78,23 @@ class SpecObject(object):
|
||||
def __init__(self):
|
||||
self.Spec = ''
|
||||
self.Version = ''
|
||||
|
||||
|
||||
def SetSpec(self, Spec):
|
||||
self.Spec = Spec
|
||||
|
||||
|
||||
def GetSpec(self):
|
||||
return self.Spec
|
||||
|
||||
|
||||
def SetVersion(self, Version):
|
||||
self.Version = Version
|
||||
|
||||
|
||||
def GetVersion(self):
|
||||
return self.Version
|
||||
|
||||
## ModuleHeaderObject
|
||||
#
|
||||
# This class defined header items used in Module file
|
||||
#
|
||||
#
|
||||
class ModuleHeaderObject(IdentificationObject, CommonHeaderObject, BinaryHeaderObject):
|
||||
def __init__(self):
|
||||
self.IsLibrary = False
|
||||
@@ -109,97 +109,97 @@ class ModuleHeaderObject(IdentificationObject, CommonHeaderObject, BinaryHeaderO
|
||||
#
|
||||
# SpecObject
|
||||
#
|
||||
self.SpecList = []
|
||||
self.SpecList = []
|
||||
#
|
||||
# BootModeObject
|
||||
#
|
||||
self.BootModeList = []
|
||||
self.BootModeList = []
|
||||
#
|
||||
# EventObject
|
||||
#
|
||||
self.EventList = []
|
||||
self.EventList = []
|
||||
#
|
||||
# HobObject
|
||||
#
|
||||
self.HobList = []
|
||||
#
|
||||
#
|
||||
# LibraryClassObject
|
||||
#
|
||||
self.LibraryClassList = []
|
||||
self.LibraryClassList = []
|
||||
self.SupArchList = []
|
||||
IdentificationObject.__init__(self)
|
||||
CommonHeaderObject.__init__(self)
|
||||
BinaryHeaderObject.__init__(self)
|
||||
|
||||
|
||||
def SetIsLibrary(self, IsLibrary):
|
||||
self.IsLibrary = IsLibrary
|
||||
|
||||
|
||||
def GetIsLibrary(self):
|
||||
return self.IsLibrary
|
||||
|
||||
|
||||
def SetIsLibraryModList(self, IsLibraryModList):
|
||||
self.IsLibraryModList = IsLibraryModList
|
||||
|
||||
|
||||
def GetIsLibraryModList(self):
|
||||
return self.IsLibraryModList
|
||||
|
||||
|
||||
def SetModuleType(self, ModuleType):
|
||||
self.ModuleType = ModuleType
|
||||
|
||||
|
||||
def GetModuleType(self):
|
||||
return self.ModuleType
|
||||
|
||||
|
||||
def SetBinaryModule(self, BinaryModule):
|
||||
self.BinaryModule = BinaryModule
|
||||
|
||||
|
||||
def GetBinaryModule(self):
|
||||
return self.BinaryModule
|
||||
|
||||
|
||||
def SetPcdIsDriver(self, PcdIsDriver):
|
||||
self.PcdIsDriver = PcdIsDriver
|
||||
|
||||
|
||||
def GetPcdIsDriver(self):
|
||||
return self.PcdIsDriver
|
||||
|
||||
|
||||
def SetPiSpecificationVersion(self, PiSpecificationVersion):
|
||||
self.PiSpecificationVersion = PiSpecificationVersion
|
||||
|
||||
|
||||
def GetPiSpecificationVersion(self):
|
||||
return self.PiSpecificationVersion
|
||||
|
||||
|
||||
def SetUefiSpecificationVersion(self, UefiSpecificationVersion):
|
||||
self.UefiSpecificationVersion = UefiSpecificationVersion
|
||||
|
||||
|
||||
def GetUefiSpecificationVersion(self):
|
||||
return self.UefiSpecificationVersion
|
||||
|
||||
|
||||
def SetSpecList(self, SpecList):
|
||||
self.SpecList = SpecList
|
||||
|
||||
|
||||
def GetSpecList(self):
|
||||
return self.SpecList
|
||||
|
||||
|
||||
def SetBootModeList(self, BootModeList):
|
||||
self.BootModeList = BootModeList
|
||||
|
||||
|
||||
def GetBootModeList(self):
|
||||
return self.BootModeList
|
||||
|
||||
|
||||
def SetEventList(self, EventList):
|
||||
self.EventList = EventList
|
||||
|
||||
|
||||
def GetEventList(self):
|
||||
return self.EventList
|
||||
|
||||
|
||||
def SetHobList(self, HobList):
|
||||
self.HobList = HobList
|
||||
|
||||
|
||||
def GetHobList(self):
|
||||
return self.HobList
|
||||
|
||||
def SetLibraryClassList(self, LibraryClassList):
|
||||
self.LibraryClassList = LibraryClassList
|
||||
|
||||
|
||||
def GetLibraryClassList(self):
|
||||
return self.LibraryClassList
|
||||
|
||||
@@ -225,38 +225,38 @@ class SourceFileObject(CommonPropertiesObject):
|
||||
self.ToolCode = ''
|
||||
self.Family = ''
|
||||
self.FileType = ''
|
||||
|
||||
|
||||
def SetSourceFile(self, SourceFile):
|
||||
self.SourceFile = SourceFile
|
||||
|
||||
|
||||
def GetSourceFile(self):
|
||||
return self.SourceFile
|
||||
|
||||
|
||||
def SetTagName(self, TagName):
|
||||
self.TagName = TagName
|
||||
|
||||
|
||||
def GetTagName(self):
|
||||
return self.TagName
|
||||
|
||||
|
||||
def SetToolCode(self, ToolCode):
|
||||
self.ToolCode = ToolCode
|
||||
|
||||
|
||||
def GetToolCode(self):
|
||||
return self.ToolCode
|
||||
|
||||
|
||||
def SetFamily(self, Family):
|
||||
self.Family = Family
|
||||
|
||||
|
||||
def GetFamily(self):
|
||||
return self.Family
|
||||
|
||||
|
||||
def SetFileType(self, FileType):
|
||||
self.FileType = FileType
|
||||
|
||||
|
||||
def GetFileType(self):
|
||||
return self.FileType
|
||||
|
||||
|
||||
|
||||
##
|
||||
# BinaryFileObject
|
||||
#
|
||||
@@ -265,7 +265,7 @@ class BinaryFileObject(CommonPropertiesObject):
|
||||
self.FileNamList = []
|
||||
self.AsBuiltList = []
|
||||
CommonPropertiesObject.__init__(self)
|
||||
|
||||
|
||||
def SetFileNameList(self, FileNamList):
|
||||
self.FileNamList = FileNamList
|
||||
|
||||
@@ -277,7 +277,7 @@ class BinaryFileObject(CommonPropertiesObject):
|
||||
|
||||
def GetAsBuiltList(self):
|
||||
return self.AsBuiltList
|
||||
|
||||
|
||||
|
||||
##
|
||||
# AsBuildLibraryClassObject
|
||||
@@ -287,12 +287,12 @@ class AsBuildLibraryClassObject(object):
|
||||
self.LibGuid = ''
|
||||
self.LibVersion = ''
|
||||
self.SupArchList = []
|
||||
|
||||
|
||||
def SetLibGuid(self, LibGuid):
|
||||
self.LibGuid = LibGuid
|
||||
def GetLibGuid(self):
|
||||
return self.LibGuid
|
||||
|
||||
|
||||
def SetLibVersion(self, LibVersion):
|
||||
self.LibVersion = LibVersion
|
||||
def GetLibVersion(self):
|
||||
@@ -342,7 +342,7 @@ class AsBuiltObject(object):
|
||||
|
||||
def GetLibraryInstancesList(self):
|
||||
return self.LibraryInstancesList
|
||||
|
||||
|
||||
def SetBuildFlagsList(self, BinaryBuildFlagList):
|
||||
self.BinaryBuildFlagList = BinaryBuildFlagList
|
||||
|
||||
@@ -351,7 +351,7 @@ class AsBuiltObject(object):
|
||||
|
||||
##
|
||||
# BinaryBuildFlag, this object will include those fields that are not
|
||||
# covered by the UPT Spec BinaryFile field
|
||||
# covered by the UPT Spec BinaryFile field
|
||||
#
|
||||
class BinaryBuildFlagObject(object):
|
||||
def __init__(self):
|
||||
@@ -359,31 +359,31 @@ class BinaryBuildFlagObject(object):
|
||||
self.TagName = ''
|
||||
self.Family = ''
|
||||
self.AsBuiltOptionFlags = ''
|
||||
|
||||
|
||||
def SetTarget(self, Target):
|
||||
self.Target = Target
|
||||
|
||||
def GetTarget(self):
|
||||
return self.Target
|
||||
return self.Target
|
||||
|
||||
def SetTagName(self, TagName):
|
||||
self.TagName = TagName
|
||||
|
||||
|
||||
def GetTagName(self):
|
||||
return self.TagName
|
||||
|
||||
|
||||
def SetFamily(self, Family):
|
||||
self.Family = Family
|
||||
|
||||
|
||||
def GetFamily(self):
|
||||
return self.Family
|
||||
|
||||
|
||||
def SetAsBuiltOptionFlags(self, AsBuiltOptionFlags):
|
||||
self.AsBuiltOptionFlags = AsBuiltOptionFlags
|
||||
def GetAsBuiltOptionFlags(self):
|
||||
return self.AsBuiltOptionFlags
|
||||
|
||||
##
|
||||
|
||||
##
|
||||
# ExternObject
|
||||
#
|
||||
class ExternObject(CommonPropertiesObject):
|
||||
@@ -394,31 +394,31 @@ class ExternObject(CommonPropertiesObject):
|
||||
self.Destructor = ''
|
||||
self.SupModList = []
|
||||
CommonPropertiesObject.__init__(self)
|
||||
|
||||
|
||||
def SetEntryPoint(self, EntryPoint):
|
||||
self.EntryPoint = EntryPoint
|
||||
|
||||
|
||||
def GetEntryPoint(self):
|
||||
return self.EntryPoint
|
||||
|
||||
|
||||
def SetUnloadImage(self, UnloadImage):
|
||||
self.UnloadImage = UnloadImage
|
||||
|
||||
|
||||
def GetUnloadImage(self):
|
||||
return self.UnloadImage
|
||||
|
||||
|
||||
def SetConstructor(self, Constructor):
|
||||
self.Constructor = Constructor
|
||||
|
||||
|
||||
def GetConstructor(self):
|
||||
return self.Constructor
|
||||
|
||||
|
||||
def SetDestructor(self, Destructor):
|
||||
self.Destructor = Destructor
|
||||
|
||||
|
||||
def GetDestructor(self):
|
||||
return self.Destructor
|
||||
|
||||
|
||||
def SetSupModList(self, SupModList):
|
||||
self.SupModList = SupModList
|
||||
def GetSupModList(self):
|
||||
@@ -432,16 +432,16 @@ class DepexObject(CommonPropertiesObject):
|
||||
self.Depex = ''
|
||||
self.ModuelType = ''
|
||||
CommonPropertiesObject.__init__(self)
|
||||
|
||||
|
||||
def SetDepex(self, Depex):
|
||||
self.Depex = Depex
|
||||
|
||||
|
||||
def GetDepex(self):
|
||||
return self.Depex
|
||||
|
||||
|
||||
def SetModuleType(self, ModuleType):
|
||||
self.ModuelType = ModuleType
|
||||
|
||||
|
||||
def GetModuleType(self):
|
||||
return self.ModuelType
|
||||
|
||||
@@ -454,16 +454,16 @@ class PackageDependencyObject(GuidVersionObject, CommonPropertiesObject):
|
||||
self.PackageFilePath = ''
|
||||
GuidVersionObject.__init__(self)
|
||||
CommonPropertiesObject.__init__(self)
|
||||
|
||||
|
||||
def SetPackageFilePath(self, PackageFilePath):
|
||||
self.PackageFilePath = PackageFilePath
|
||||
|
||||
|
||||
def GetPackageFilePath(self):
|
||||
return self.PackageFilePath
|
||||
|
||||
def SetPackage(self, Package):
|
||||
self.Package = Package
|
||||
|
||||
|
||||
def GetPackage(self):
|
||||
return self.Package
|
||||
|
||||
@@ -474,13 +474,13 @@ class BuildOptionObject(CommonPropertiesObject):
|
||||
def __init__(self):
|
||||
CommonPropertiesObject.__init__(self)
|
||||
self.BuildOption = ''
|
||||
|
||||
|
||||
def SetBuildOption(self, BuildOption):
|
||||
self.BuildOption = BuildOption
|
||||
|
||||
|
||||
def GetBuildOption(self):
|
||||
return self.BuildOption
|
||||
|
||||
|
||||
##
|
||||
# ModuleObject
|
||||
#
|
||||
@@ -489,172 +489,172 @@ class ModuleObject(ModuleHeaderObject):
|
||||
#
|
||||
# {Arch : ModuleHeaderObject}
|
||||
#
|
||||
self.HeaderDict = {}
|
||||
self.HeaderDict = {}
|
||||
#
|
||||
# LibraryClassObject
|
||||
#
|
||||
self.LibraryClassList = []
|
||||
self.LibraryClassList = []
|
||||
#
|
||||
# SourceFileObject
|
||||
#
|
||||
self.SourceFileList = []
|
||||
self.SourceFileList = []
|
||||
#
|
||||
# BinaryFileObject
|
||||
#
|
||||
self.BinaryFileList = []
|
||||
self.BinaryFileList = []
|
||||
#
|
||||
# PackageDependencyObject
|
||||
#
|
||||
self.PackageDependencyList = []
|
||||
self.PackageDependencyList = []
|
||||
#
|
||||
# DepexObject
|
||||
#
|
||||
self.PeiDepex = []
|
||||
self.PeiDepex = []
|
||||
#
|
||||
# DepexObject
|
||||
#
|
||||
self.DxeDepex = []
|
||||
self.DxeDepex = []
|
||||
#
|
||||
# DepexObject
|
||||
#
|
||||
self.SmmDepex = []
|
||||
self.SmmDepex = []
|
||||
#
|
||||
# ProtocolObject
|
||||
#
|
||||
self.ProtocolList = []
|
||||
self.ProtocolList = []
|
||||
#
|
||||
# PpiObject
|
||||
#
|
||||
self.PpiList = []
|
||||
self.PpiList = []
|
||||
#
|
||||
# GuidObject
|
||||
#
|
||||
self.GuidList = []
|
||||
self.GuidList = []
|
||||
#
|
||||
# PcdObject
|
||||
#
|
||||
self.PcdList = []
|
||||
self.PcdList = []
|
||||
#
|
||||
# ExternObject
|
||||
#
|
||||
self.ExternList = []
|
||||
self.ExternList = []
|
||||
#
|
||||
# BuildOptionObject
|
||||
#
|
||||
self.BuildOptionList = []
|
||||
self.BuildOptionList = []
|
||||
#
|
||||
# UserExtensionObject
|
||||
#
|
||||
self.UserExtensionList = []
|
||||
self.UserExtensionList = []
|
||||
#
|
||||
# MiscFileObject
|
||||
#
|
||||
self.MiscFileList = []
|
||||
self.MiscFileList = []
|
||||
#
|
||||
# ClonedFromObject
|
||||
#
|
||||
self.ClonedFrom = None
|
||||
|
||||
self.ClonedFrom = None
|
||||
|
||||
ModuleHeaderObject.__init__(self)
|
||||
|
||||
|
||||
def SetHeaderDict(self, HeaderDict):
|
||||
self.HeaderDict = HeaderDict
|
||||
|
||||
|
||||
def GetHeaderDict(self):
|
||||
return self.HeaderDict
|
||||
|
||||
|
||||
def SetLibraryClassList(self, LibraryClassList):
|
||||
self.LibraryClassList = LibraryClassList
|
||||
|
||||
|
||||
def GetLibraryClassList(self):
|
||||
return self.LibraryClassList
|
||||
|
||||
|
||||
def SetSourceFileList(self, SourceFileList):
|
||||
self.SourceFileList = SourceFileList
|
||||
|
||||
|
||||
def GetSourceFileList(self):
|
||||
return self.SourceFileList
|
||||
|
||||
|
||||
def SetBinaryFileList(self, BinaryFileList):
|
||||
self.BinaryFileList = BinaryFileList
|
||||
|
||||
def GetBinaryFileList(self):
|
||||
return self.BinaryFileList
|
||||
|
||||
|
||||
def SetPackageDependencyList(self, PackageDependencyList):
|
||||
self.PackageDependencyList = PackageDependencyList
|
||||
|
||||
|
||||
def GetPackageDependencyList(self):
|
||||
return self.PackageDependencyList
|
||||
|
||||
|
||||
def SetPeiDepex(self, PeiDepex):
|
||||
self.PeiDepex = PeiDepex
|
||||
|
||||
|
||||
def GetPeiDepex(self):
|
||||
return self.PeiDepex
|
||||
|
||||
|
||||
def SetDxeDepex(self, DxeDepex):
|
||||
self.DxeDepex = DxeDepex
|
||||
|
||||
|
||||
def GetDxeDepex(self):
|
||||
return self.DxeDepex
|
||||
|
||||
|
||||
def SetSmmDepex(self, SmmDepex):
|
||||
self.SmmDepex = SmmDepex
|
||||
|
||||
|
||||
def GetSmmDepex(self):
|
||||
return self.SmmDepex
|
||||
|
||||
|
||||
def SetPpiList(self, PpiList):
|
||||
self.PpiList = PpiList
|
||||
|
||||
|
||||
def GetPpiList(self):
|
||||
return self.PpiList
|
||||
|
||||
def SetProtocolList(self, ProtocolList):
|
||||
self.ProtocolList = ProtocolList
|
||||
|
||||
|
||||
def GetProtocolList(self):
|
||||
return self.ProtocolList
|
||||
|
||||
def SetPcdList(self, PcdList):
|
||||
self.PcdList = PcdList
|
||||
|
||||
|
||||
def GetPcdList(self):
|
||||
return self.PcdList
|
||||
|
||||
|
||||
def SetGuidList(self, GuidList):
|
||||
self.GuidList = GuidList
|
||||
|
||||
|
||||
def GetGuidList(self):
|
||||
return self.GuidList
|
||||
|
||||
|
||||
def SetExternList(self, ExternList):
|
||||
self.ExternList = ExternList
|
||||
|
||||
def GetExternList(self):
|
||||
return self.ExternList
|
||||
|
||||
|
||||
def SetBuildOptionList(self, BuildOptionList):
|
||||
self.BuildOptionList = BuildOptionList
|
||||
|
||||
|
||||
def GetBuildOptionList(self):
|
||||
return self.BuildOptionList
|
||||
|
||||
|
||||
def SetUserExtensionList(self, UserExtensionList):
|
||||
self.UserExtensionList = UserExtensionList
|
||||
|
||||
|
||||
def GetUserExtensionList(self):
|
||||
return self.UserExtensionList
|
||||
|
||||
|
||||
def SetMiscFileList(self, MiscFileList):
|
||||
self.MiscFileList = MiscFileList
|
||||
|
||||
|
||||
def GetMiscFileList(self):
|
||||
return self.MiscFileList
|
||||
|
||||
|
||||
def SetClonedFrom(self, ClonedFrom):
|
||||
self.ClonedFrom = ClonedFrom
|
||||
|
||||
|
||||
def GetClonedFrom(self):
|
||||
return self.ClonedFrom
|
||||
|
@@ -1,11 +1,11 @@
|
||||
## @file
|
||||
# This file is used to define a class object to describe a package
|
||||
#
|
||||
# Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
@@ -30,10 +30,10 @@ class StandardIncludeFileObject(CommonPropertiesObject):
|
||||
def __init__(self):
|
||||
CommonPropertiesObject.__init__(self)
|
||||
self.IncludeFile = ''
|
||||
|
||||
|
||||
def SetIncludeFile(self, IncludeFile):
|
||||
self.IncludeFile = IncludeFile
|
||||
|
||||
|
||||
def GetIncludeFile(self):
|
||||
return self.IncludeFile
|
||||
|
||||
@@ -53,19 +53,19 @@ class PackageObject(IdentificationObject, CommonHeaderObject, BinaryHeaderObject
|
||||
#
|
||||
# LibraryClassObject
|
||||
#
|
||||
self.LibraryClassList = []
|
||||
self.LibraryClassList = []
|
||||
#
|
||||
# FileObject
|
||||
#
|
||||
self.IncludePathList = []
|
||||
self.IncludePathList = []
|
||||
#
|
||||
# StandardIncludeFileObject
|
||||
#
|
||||
self.StandardIncludeFileList = []
|
||||
self.StandardIncludeFileList = []
|
||||
#
|
||||
# PackageIncludeFileObject
|
||||
#
|
||||
self.PackageIncludeFileList = []
|
||||
self.PackageIncludeFileList = []
|
||||
#
|
||||
# Include and Arch List, item is (IncludePath, SupArchList-List of Arch), used during install package
|
||||
#
|
||||
@@ -73,126 +73,126 @@ class PackageObject(IdentificationObject, CommonHeaderObject, BinaryHeaderObject
|
||||
#
|
||||
# ProtocolObject
|
||||
#
|
||||
self.ProtocolList = []
|
||||
self.ProtocolList = []
|
||||
#
|
||||
# PpiObject
|
||||
#
|
||||
self.PpiList = []
|
||||
self.PpiList = []
|
||||
#
|
||||
# GuidObject
|
||||
#
|
||||
self.GuidList = []
|
||||
self.GuidList = []
|
||||
#
|
||||
# (PcdObject, PcdErrorObject)
|
||||
#
|
||||
self.PcdList = []
|
||||
self.PcdList = []
|
||||
#
|
||||
# {(PcdTokenSpaceGuidCName, PcdErrroNumber): PcdErrorMessageList}
|
||||
#
|
||||
self.PcdErrorCommentDict = {}
|
||||
#
|
||||
# UserExtensionObject
|
||||
#
|
||||
self.UserExtensionList = []
|
||||
#
|
||||
self.UserExtensionList = []
|
||||
#
|
||||
# MiscFileObject
|
||||
#
|
||||
self.MiscFileList = []
|
||||
self.MiscFileList = []
|
||||
self.ModuleDict = Sdict()
|
||||
#
|
||||
# ClonedRecordObject
|
||||
#
|
||||
self.ClonedFromList = []
|
||||
self.ClonedFromList = []
|
||||
#
|
||||
# string object
|
||||
#
|
||||
self.ModuleFileList = []
|
||||
|
||||
self.ModuleFileList = []
|
||||
|
||||
self.PcdChecks = []
|
||||
|
||||
|
||||
self.UNIFlag = False
|
||||
|
||||
|
||||
def SetLibraryClassList(self, LibraryClassList):
|
||||
self.LibraryClassList = LibraryClassList
|
||||
|
||||
|
||||
def GetLibraryClassList(self):
|
||||
return self.LibraryClassList
|
||||
|
||||
|
||||
def SetIncludePathList(self, IncludePathList):
|
||||
self.IncludePathList = IncludePathList
|
||||
|
||||
|
||||
def GetIncludePathList(self):
|
||||
return self.IncludePathList
|
||||
|
||||
def SetIncludeArchList(self, IncludeArchList):
|
||||
self.IncludeArchList = IncludeArchList
|
||||
|
||||
|
||||
def GetIncludeArchList(self):
|
||||
return self.IncludeArchList
|
||||
|
||||
return self.IncludeArchList
|
||||
|
||||
def SetStandardIncludeFileList(self, StandardIncludeFileList):
|
||||
self.StandardIncludeFileList = StandardIncludeFileList
|
||||
|
||||
|
||||
def GetStandardIncludeFileList(self):
|
||||
return self.StandardIncludeFileList
|
||||
|
||||
|
||||
def SetPackageIncludeFileList(self, PackageIncludeFileList):
|
||||
self.PackageIncludeFileList = PackageIncludeFileList
|
||||
|
||||
|
||||
def GetPackageIncludeFileList(self):
|
||||
return self.PackageIncludeFileList
|
||||
|
||||
|
||||
def SetProtocolList(self, ProtocolList):
|
||||
self.ProtocolList = ProtocolList
|
||||
|
||||
|
||||
def GetProtocolList(self):
|
||||
return self.ProtocolList
|
||||
|
||||
|
||||
def SetPpiList(self, PpiList):
|
||||
self.PpiList = PpiList
|
||||
|
||||
|
||||
def GetPpiList(self):
|
||||
return self.PpiList
|
||||
|
||||
|
||||
def SetGuidList(self, GuidList):
|
||||
self.GuidList = GuidList
|
||||
|
||||
|
||||
def GetGuidList(self):
|
||||
return self.GuidList
|
||||
|
||||
|
||||
def SetPcdList(self, PcdList):
|
||||
self.PcdList = PcdList
|
||||
|
||||
|
||||
def GetPcdList(self):
|
||||
return self.PcdList
|
||||
|
||||
|
||||
def SetUserExtensionList(self, UserExtensionList):
|
||||
self.UserExtensionList = UserExtensionList
|
||||
|
||||
|
||||
def GetUserExtensionList(self):
|
||||
return self.UserExtensionList
|
||||
|
||||
|
||||
def SetMiscFileList(self, MiscFileList):
|
||||
self.MiscFileList = MiscFileList
|
||||
|
||||
|
||||
def GetMiscFileList(self):
|
||||
return self.MiscFileList
|
||||
|
||||
def SetModuleDict(self, ModuleDict):
|
||||
self.ModuleDict = ModuleDict
|
||||
|
||||
|
||||
def GetModuleDict(self):
|
||||
return self.ModuleDict
|
||||
|
||||
def SetClonedFromList(self, ClonedFromList):
|
||||
self.ClonedFromList = ClonedFromList
|
||||
|
||||
|
||||
def GetClonedFromList(self):
|
||||
return self.ClonedFromList
|
||||
|
||||
def SetModuleFileList(self, ModuleFileList):
|
||||
self.ModuleFileList = ModuleFileList
|
||||
|
||||
|
||||
def GetModuleFileList(self):
|
||||
return self.ModuleFileList
|
||||
|
||||
|
@@ -4,11 +4,11 @@
|
||||
# This file is required to make Python interpreter treat the directory
|
||||
# as containing package.
|
||||
#
|
||||
# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
#
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# This program and the accompanying materials are licensed and made available
|
||||
# under the terms and conditions of the BSD License which accompanies this
|
||||
# distribution. The full text of the license may be found at
|
||||
# http://opensource.org/licenses/bsd-license.php
|
||||
#
|
||||
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
@@ -17,4 +17,4 @@
|
||||
|
||||
'''
|
||||
POM
|
||||
'''
|
||||
'''
|
||||
|
Reference in New Issue
Block a user