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