]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identification/PcdCoded/PcdCodedIdentification.java
Added "/FI", "-include" and/or "/nologo" options to PP (CC) command option to fpd...
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identification / PcdCoded / PcdCodedIdentification.java
CommitLineData
a13899c5 1/** @file\r
2\r
3 The file is used to define Package Dependencies Identification\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
15\r
16package org.tianocore.frameworkwizard.module.Identification.PcdCoded;\r
17\r
18import java.util.Vector;\r
19\r
20public class PcdCodedIdentification {\r
21\r
22 //\r
23 // Define class members\r
24 //\r
25 private String name = null;\r
26\r
27 private String guid = null;\r
28 \r
29 private String featureFlag = null;\r
30\r
31 private Vector<String> supArchList = null;\r
32\r
33 private String value = null;\r
34 \r
35 private String help = null;\r
36 \r
37 private String type = null;\r
38\r
39 public PcdCodedIdentification(String arg0, String arg1, String arg2, Vector<String> arg3, String arg4, String arg5, String arg6) {\r
40 this.name = (arg0 == null ? "" : arg0);\r
41 this.guid = (arg1 == null ? "" : arg1);\r
42 this.featureFlag = (arg2 == null ? "" : arg2);\r
43 this.supArchList = arg3;\r
44 this.value = (arg4 == null ? "" : arg4);\r
45 this.help = (arg5 == null ? "" : arg5);\r
46 this.type = (arg6 == null ? "" : arg6);\r
47 }\r
48\r
49 public String getFeatureFlag() {\r
50 return featureFlag;\r
51 }\r
52\r
53 public void setFeatureFlag(String featureFlag) {\r
54 this.featureFlag = featureFlag;\r
55 }\r
56\r
57 public String getName() {\r
58 return name;\r
59 }\r
60\r
61 public void setName(String name) {\r
62 this.name = name;\r
63 }\r
64\r
65 public Vector<String> getSupArchList() {\r
66 return supArchList;\r
67 }\r
68\r
69 public void setSupArchList(Vector<String> supArchList) {\r
70 this.supArchList = supArchList;\r
71 }\r
72 \r
73 public boolean equals(PcdCodedIdentification pi) {\r
74 if (this.name.equals(pi.name)) {\r
75 return true;\r
76 }\r
77 return false;\r
78 }\r
79\r
80 public String getGuid() {\r
81 return guid;\r
82 }\r
83\r
84 public void setGuid(String guid) {\r
85 this.guid = guid;\r
86 }\r
87\r
88 public String getHelp() {\r
89 return help;\r
90 }\r
91\r
92 public void setHelp(String help) {\r
93 this.help = help;\r
94 }\r
95\r
96 public String getType() {\r
97 return type;\r
98 }\r
99\r
100 public void setType(String type) {\r
101 this.type = type;\r
102 }\r
103\r
104 public String getValue() {\r
105 return value;\r
106 }\r
107\r
108 public void setValue(String value) {\r
109 this.value = value;\r
110 }\r
111}\r