]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/BuildOptions/BuildOptionsIdentification.java
remove unnecessary check for NULL pointer.
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / BuildOptions / BuildOptionsIdentification.java
CommitLineData
b3cb8ee7 1/** @file\r
2\r
3 The file is used to define Build Options 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.Identifications.BuildOptions;\r
17\r
18import java.util.Vector;\r
19\r
20public class BuildOptionsIdentification {\r
21\r
22 //\r
23 // Define class members\r
24 //\r
25 private String option = null;\r
26\r
27 private Vector<String> buildTargets = null;\r
28 \r
29 private String toolChainFamily = null;\r
30\r
31 private String tagName = null;\r
32 \r
33 private String toolCode = null;\r
34 \r
35 private Vector<String> supArchList = null;\r
36\r
37 public BuildOptionsIdentification(String arg0, Vector<String> arg1, String arg2, String arg3, String arg4, Vector<String> arg5) {\r
38 this.option = (arg0 == null ? "" : arg0);\r
39 this.buildTargets = arg1;\r
40 this.toolChainFamily = (arg2 == null ? "" : arg2);\r
41 this.tagName = (arg3 == null ? "" : arg3);\r
42 this.toolCode = (arg4 == null ? "" : arg4);\r
43 this.supArchList = arg5;\r
44 }\r
45\r
46 public String getOption() {\r
47 return option;\r
48 }\r
49\r
50 public void setOption(String option) {\r
51 this.option = option;\r
52 }\r
53\r
54 public Vector<String> getSupArchList() {\r
55 return supArchList;\r
56 }\r
57\r
58 public void setSupArchList(Vector<String> supArchList) {\r
59 this.supArchList = supArchList;\r
60 }\r
61\r
62 public String getTagName() {\r
63 return tagName;\r
64 }\r
65\r
66 public void setTagName(String tagName) {\r
67 this.tagName = tagName;\r
68 }\r
69\r
70 public String getToolChainFamily() {\r
71 return toolChainFamily;\r
72 }\r
73\r
74 public void setToolChainFamily(String toolChainFamily) {\r
75 this.toolChainFamily = toolChainFamily;\r
76 }\r
77\r
78 public String getToolCode() {\r
79 return toolCode;\r
80 }\r
81\r
82 public void setToolCode(String toolCode) {\r
83 this.toolCode = toolCode;\r
84 }\r
85\r
86 public Vector<String> getBuildTargets() {\r
87 return buildTargets;\r
88 }\r
89\r
90 public void setBuildTargets(Vector<String> buildTargets) {\r
91 this.buildTargets = buildTargets;\r
92 }\r
93}\r