X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fcommon%2FIdentifications%2FOpeningModuleType.java;fp=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fcommon%2FIdentifications%2FOpeningModuleType.java;h=0000000000000000000000000000000000000000;hp=427549ade7b4afa2ce2022a90f35a1166ecba072;hb=feccee87a78e68d575dbdf44b34ca0cb5a21ea8d;hpb=214b0d1914b48d651b25e58f321ddb77a46903b8 diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningModuleType.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningModuleType.java deleted file mode 100644 index 427549ade7..0000000000 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningModuleType.java +++ /dev/null @@ -1,53 +0,0 @@ -/** @file - - The file is used to define opening module type - - Copyright (c) 2006, Intel Corporation - All rights reserved. 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, - WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - - **/ - -package org.tianocore.frameworkwizard.common.Identifications; - -import org.tianocore.ModuleSurfaceAreaDocument; -import org.tianocore.frameworkwizard.module.Identifications.ModuleIdentification; - -public class OpeningModuleType extends OpeningFileType{ - // - // Define class members - // - private ModuleSurfaceAreaDocument.ModuleSurfaceArea xmlMsa = null; - - private ModuleIdentification id = null; - - public OpeningModuleType() { - - } - - public OpeningModuleType(ModuleIdentification identification, ModuleSurfaceAreaDocument.ModuleSurfaceArea msa) { - this.id = identification; - this.xmlMsa = msa; - } - - public ModuleSurfaceAreaDocument.ModuleSurfaceArea getXmlMsa() { - return xmlMsa; - } - - public void setXmlMsa(ModuleSurfaceAreaDocument.ModuleSurfaceArea xmlMsa) { - this.xmlMsa = xmlMsa; - } - - public ModuleIdentification getId() { - return id; - } - - public void setId(ModuleIdentification id) { - this.id = id; - } -}