]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningPackageType.java
Turned off the AUTO_RESIZE on the table so that it would work on a small display...
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / Identifications / OpeningPackageType.java
CommitLineData
79cb6fdb 1/** @file\r
2 \r
3 The file is used to define opening package 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
15package org.tianocore.frameworkwizard.common.Identifications;\r
16\r
17import javax.swing.tree.TreePath;\r
18\r
19import org.tianocore.PackageSurfaceAreaDocument;\r
20\r
21public class OpeningPackageType extends OpeningFileType {\r
22 //\r
23 // Define class members\r
24 //\r
25 private PackageSurfaceAreaDocument.PackageSurfaceArea xmlSpd = null;\r
26 \r
27 public OpeningPackageType() {\r
28 \r
29 }\r
30 \r
31 public OpeningPackageType(Identification identification, PackageSurfaceAreaDocument.PackageSurfaceArea spd) {\r
32 super(identification);\r
33 this.xmlSpd = spd;\r
34 }\r
35 \r
36 public OpeningPackageType(Identification identification, PackageSurfaceAreaDocument.PackageSurfaceArea spd, TreePath treePath) {\r
37 super(identification, treePath);\r
38 this.xmlSpd = spd;\r
39 }\r
40\r
41 public PackageSurfaceAreaDocument.PackageSurfaceArea getXmlSpd() {\r
42 return xmlSpd;\r
43 }\r
44\r
45 public void setXmlSpd(PackageSurfaceAreaDocument.PackageSurfaceArea xmlSpd) {\r
46 this.xmlSpd = xmlSpd;\r
47 }\r
48}\r