]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Tools/Java/Source/PcdTools/org/tianocore/pcd/entity/SkuInstance.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Java / Source / PcdTools / org / tianocore / pcd / entity / SkuInstance.java
... / ...
CommitLineData
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.pcd.entity;\r
17\r
18/** \r
19 Sku instance contains ID and value, A pcd token maybe contains more than one Sku instance.\r
20**/\r
21public class SkuInstance {\r
22 ///\r
23 /// The id number of this SKU instance\r
24 ///\r
25 public int id;\r
26\r
27 ///\r
28 /// The value of this SKU instance\r
29 ///\r
30 public DynamicTokenValue value;\r
31\r
32 /**\r
33 Constructure function\r
34\r
35 @param id sku id \r
36 @param value sku value for this id.\r
37 **/\r
38 public SkuInstance(int id, DynamicTokenValue value) {\r
39 this.id = id;\r
40 this.value = value;\r
41 }\r
42\r
43 /**\r
44 Default constructor function. \r
45 **/\r
46 public SkuInstance() {\r
47 this.id = 0;\r
48 this.value = new DynamicTokenValue();\r
49 }\r
50}\r