]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/PcdTools/org/tianocore/pcd/entity/SkuInstance.java
Abstract the logic of Platform pcd preprocess according to FPD file to a class. And...
[mirror_edk2.git] / Tools / Source / PcdTools / org / tianocore / 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
d14ebb43 16package org.tianocore.pcd.entity;\r
878ddf1f 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
6ff7a41c 24 public int id;\r
bc262841 25\r
878ddf1f 26 ///\r
27 /// The value of this SKU instance\r
28 ///\r
6ff7a41c 29 public DynamicTokenValue value;\r
878ddf1f 30\r
31 /**\r
32 Constructure function\r
33\r
34 @param id sku id \r
35 @param value sku value for this id.\r
36 **/\r
6ff7a41c 37 public SkuInstance(int id, DynamicTokenValue value) {\r
878ddf1f 38 this.id = id;\r
39 this.value = value;\r
40 }\r
6ff7a41c 41\r
bc262841 42 /**\r
43 Default constructor function. \r
44 **/\r
6ff7a41c 45 public SkuInstance() {\r
46 this.id = 0;\r
47 this.value = new DynamicTokenValue();\r
48 }\r
878ddf1f 49}\r