]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningModuleType.java
1. Restructure some folders and files
[mirror_edk2.git] / Tools / 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 javax.swing.tree.TreePath;
19
20 import org.tianocore.ModuleSurfaceAreaDocument;
21
22 public class OpeningModuleType extends OpeningFileType{
23 //
24 // Define class members
25 //
26 private ModuleSurfaceAreaDocument.ModuleSurfaceArea xmlMsa = null;
27
28 public OpeningModuleType() {
29
30 }
31
32 public OpeningModuleType(Identification identification, ModuleSurfaceAreaDocument.ModuleSurfaceArea msa) {
33 super(identification);
34 this.xmlMsa = msa;
35 }
36
37 public OpeningModuleType(Identification identification, ModuleSurfaceAreaDocument.ModuleSurfaceArea msa, TreePath treePath) {
38 super(identification, treePath);
39 this.xmlMsa = msa;
40 }
41
42 public ModuleSurfaceAreaDocument.ModuleSurfaceArea getXmlMsa() {
43 return xmlMsa;
44 }
45
46 public void setXmlMsa(ModuleSurfaceAreaDocument.ModuleSurfaceArea xmlMsa) {
47 this.xmlMsa = xmlMsa;
48 }
49 }