]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/GenBuild/org/tianocore/build/tools/PackageItem.java
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@696 6f19259b...
[mirror_edk2.git] / Tools / Source / GenBuild / org / tianocore / build / tools / PackageItem.java
1 /** @file
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 **/
13 package org.tianocore.build.tools;
14
15 import org.apache.tools.ant.BuildException;
16 import org.tianocore.build.global.SurfaceAreaQuery;
17
18 public class PackageItem {
19
20 private String packageName;
21
22 private String packageGuid;
23
24 private String packageVersion;
25
26 public PackageItem(){
27
28 }
29
30 public void execute() throws BuildException {
31
32 }
33
34 public String toString(){
35 return "[" + packageName + packageGuid + "]";
36 }
37 public String getPackageGuid() {
38 return packageGuid;
39 }
40
41 public void setPackageGuid(String packageGuid) {
42 this.packageGuid = packageGuid;
43 }
44
45 public String getPackageName() {
46 return packageName;
47 }
48
49 public void setPackageName(String packageName) {
50 this.packageName = packageName;
51 }
52
53 public String getPackageVersion() {
54 return packageVersion;
55 }
56
57 public void setPackageVersion(String packageVersion) {
58 this.packageVersion = packageVersion;
59 }
60 }