]> git.proxmox.com Git - mirror_edk2.git/blob - 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
1 /** @file
2
3 The file is used to define opening package 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 package org.tianocore.frameworkwizard.common.Identifications;
16
17 import org.tianocore.PackageSurfaceAreaDocument;
18 import org.tianocore.frameworkwizard.packaging.PackageIdentification;
19
20 public class OpeningPackageType extends OpeningFileType {
21 //
22 // Define class members
23 //
24 private PackageSurfaceAreaDocument.PackageSurfaceArea xmlSpd = null;
25
26 private PackageIdentification id = null;
27
28 public OpeningPackageType() {
29
30 }
31
32 public OpeningPackageType(PackageIdentification identification, PackageSurfaceAreaDocument.PackageSurfaceArea spd) {
33 this.id = identification;
34 this.xmlSpd = spd;
35 }
36
37 public PackageSurfaceAreaDocument.PackageSurfaceArea getXmlSpd() {
38 return xmlSpd;
39 }
40
41 public void setXmlSpd(PackageSurfaceAreaDocument.PackageSurfaceArea xmlSpd) {
42 this.xmlSpd = xmlSpd;
43 }
44
45 public PackageIdentification getId() {
46 return id;
47 }
48
49 public void setId(PackageIdentification id) {
50 this.id = id;
51 }
52 }