]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identification/SystemTables/SystemTablesIdentification.java
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@671 6f19259b...
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identification / SystemTables / SystemTablesIdentification.java
1 /** @file
2
3 The file is used to define Package Dependencies Identification
4
5 Copyright (c) 2006, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 package org.tianocore.frameworkwizard.module.Identification.SystemTables;
17
18 import java.util.Vector;
19
20 public class SystemTablesIdentification {
21
22 //
23 // Define class members
24 //
25 private String name = null;
26
27 private String usage = null;
28
29 private Vector<String> supArchList = null;
30
31 private String featureFlag = null;
32
33 private String help = null;
34
35 public SystemTablesIdentification(String arg0, String arg1, String arg2, Vector<String> arg3, String arg4) {
36 this.name = (arg0 == null ? "" : arg0);
37 this.usage = (arg1 == null ? "" : arg1);
38 this.featureFlag = (arg2 == null ? "" : arg2);
39 this.supArchList = arg3;
40 this.help = (arg4 == null ? "" : arg4);
41 }
42
43 public String getFeatureFlag() {
44 return featureFlag;
45 }
46
47 public void setFeatureFlag(String featureFlag) {
48 this.featureFlag = featureFlag;
49 }
50
51 public String getName() {
52 return name;
53 }
54
55 public void setName(String name) {
56 this.name = name;
57 }
58
59 public Vector<String> getSupArchList() {
60 return supArchList;
61 }
62
63 public void setSupArchList(Vector<String> supArchList) {
64 this.supArchList = supArchList;
65 }
66
67 public boolean equals(SystemTablesIdentification pi) {
68 if (this.name.equals(pi.name)) {
69 return true;
70 }
71 return false;
72 }
73
74 public String getUsage() {
75 return usage;
76 }
77
78 public void setUsage(String usage) {
79 this.usage = usage;
80 }
81
82 public String getHelp() {
83 return help;
84 }
85
86 public void setHelp(String help) {
87 this.help = help;
88 }
89 }