]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/find/PcdId.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / find / PcdId.java
CommitLineData
55e83b18 1/** @file\r
2\r
3 The file is used to define GUID Identification used by find function\r
4\r
5 Copyright (c) 2006, Intel Corporation\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14 **/\r
15package org.tianocore.frameworkwizard.common.find;\r
16\r
17public class PcdId {\r
18\r
19 private String name = null;\r
20\r
21 private String type = null;\r
22\r
23 private String producedModules = null;\r
24\r
25 private String consumedModules = null;\r
26 \r
27 private String declaredBy = null;\r
28\r
29 public PcdId(String arg0, String arg1, String arg2, String arg3, String arg4) {\r
30 this.name = (arg0 == null ? "" : arg0);\r
31 this.type = (arg1 == null ? "" : arg1);\r
32 this.producedModules = (arg2 == null ? "" : arg2);\r
33 this.consumedModules = (arg3 == null ? "" : arg3);\r
34 this.declaredBy = (arg4 == null ? "" : arg4);\r
35 }\r
36\r
37 public String getConsumedModules() {\r
38 return consumedModules;\r
39 }\r
40\r
41 public void setConsumedModules(String consumedModules) {\r
42 this.consumedModules = consumedModules;\r
43 }\r
44\r
45 public String getName() {\r
46 return name;\r
47 }\r
48\r
49 public void setName(String name) {\r
50 this.name = name;\r
51 }\r
52\r
53 public String getProducedModules() {\r
54 return producedModules;\r
55 }\r
56\r
57 public void setProducedModules(String producedModules) {\r
58 this.producedModules = producedModules;\r
59 }\r
60\r
61 public String getType() {\r
62 return type;\r
63 }\r
64\r
65 public void setType(String type) {\r
66 this.type = type;\r
67 }\r
68\r
69 public String getDeclaredBy() {\r
70 return declaredBy;\r
71 }\r
72\r
73 public void setDeclaredBy(String declaredBy) {\r
74 this.declaredBy = declaredBy;\r
75 }\r
76}\r