]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningPackageType.java
Changed spelling to manifest
[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
79cb6fdb 17import org.tianocore.PackageSurfaceAreaDocument;\r
739c6b04 18import org.tianocore.frameworkwizard.packaging.PackageIdentification;\r
79cb6fdb 19\r
20public class OpeningPackageType extends OpeningFileType {\r
21 //\r
22 // Define class members\r
23 //\r
24 private PackageSurfaceAreaDocument.PackageSurfaceArea xmlSpd = null;\r
25 \r
739c6b04 26 private PackageIdentification id = null;\r
27 \r
79cb6fdb 28 public OpeningPackageType() {\r
29 \r
30 }\r
31 \r
739c6b04 32 public OpeningPackageType(PackageIdentification identification, PackageSurfaceAreaDocument.PackageSurfaceArea spd) {\r
33 this.id = identification;\r
79cb6fdb 34 this.xmlSpd = spd;\r
35 }\r
79cb6fdb 36\r
37 public PackageSurfaceAreaDocument.PackageSurfaceArea getXmlSpd() {\r
38 return xmlSpd;\r
39 }\r
40\r
41 public void setXmlSpd(PackageSurfaceAreaDocument.PackageSurfaceArea xmlSpd) {\r
42 this.xmlSpd = xmlSpd;\r
43 }\r
739c6b04 44\r
45 public PackageIdentification getId() {\r
46 return id;\r
47 }\r
48\r
49 public void setId(PackageIdentification id) {\r
50 this.id = id;\r
51 }\r
79cb6fdb 52}\r