]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/GenBuild/org/tianocore/build/pcd/entity/SkuInstance.java
More design and build rules, as well as refining requirements.
[mirror_edk2.git] / Tools / Source / GenBuild / org / tianocore / build / pcd / entity / SkuInstance.java
CommitLineData
878ddf1f 1/** @file\r
2 SkuInstance class.\r
3\r
4 Sku instance contains ID and value, A pcd token maybe contains more than one Sku instance.\r
5 \r
6Copyright (c) 2006, Intel Corporation\r
7All rights reserved. This program and the accompanying materials\r
8are licensed and made available under the terms and conditions of the BSD License\r
9which accompanies this distribution. The full text of the license may be found at\r
10http://opensource.org/licenses/bsd-license.php\r
11 \r
12THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15**/ \r
16package org.tianocore.build.pcd.entity;\r
17\r
18/** Sku instance contains ID and value, A pcd token maybe contains more than one Sku instance.\r
19**/\r
20public class SkuInstance {\r
21 ///\r
22 /// The id number of this SKU instance\r
23 ///\r
24 public int id;\r
25 ///\r
26 /// The value of this SKU instance\r
27 ///\r
28 public Object value;\r
29\r
30 /**\r
31 Constructure function\r
32\r
33 @param id sku id \r
34 @param value sku value for this id.\r
35 **/\r
36 public SkuInstance(int id, Object value) {\r
37 this.id = id;\r
38 this.value = value;\r
39 }\r
40}\r