]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningModuleType.java
427549ade7b4afa2ce2022a90f35a1166ecba072
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / Identifications / OpeningModuleType.java
1 /** @file
2
3 The file is used to define opening module type
4
5 Copyright (c) 2006, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 package org.tianocore.frameworkwizard.common.Identifications;
17
18 import org.tianocore.ModuleSurfaceAreaDocument;
19 import org.tianocore.frameworkwizard.module.Identifications.ModuleIdentification;
20
21 public class OpeningModuleType extends OpeningFileType{
22 //
23 // Define class members
24 //
25 private ModuleSurfaceAreaDocument.ModuleSurfaceArea xmlMsa = null;
26
27 private ModuleIdentification id = null;
28
29 public OpeningModuleType() {
30
31 }
32
33 public OpeningModuleType(ModuleIdentification identification, ModuleSurfaceAreaDocument.ModuleSurfaceArea msa) {
34 this.id = identification;
35 this.xmlMsa = msa;
36 }
37
38 public ModuleSurfaceAreaDocument.ModuleSurfaceArea getXmlMsa() {
39 return xmlMsa;
40 }
41
42 public void setXmlMsa(ModuleSurfaceAreaDocument.ModuleSurfaceArea xmlMsa) {
43 this.xmlMsa = xmlMsa;
44 }
45
46 public ModuleIdentification getId() {
47 return id;
48 }
49
50 public void setId(ModuleIdentification id) {
51 this.id = id;
52 }
53 }