]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Events/EventsIdentification.java
1. Fix the bug missing TokenSpaceGuidCName when editing a pcd entry in Msa
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / Events / EventsIdentification.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.Identifications.Events;
17
18 import java.util.Vector;
19
20 public class EventsIdentification {
21
22 //
23 // Define class members
24 //
25 private String name = null;
26
27 private String type = null;
28
29 private String usage = null;
30
31 private Vector<String> supArchList = null;
32
33 private String featureFlag = null;
34
35 private String help = null;
36
37 private String group = null;
38
39 public EventsIdentification(String arg0, String arg1, String arg2, String arg3, Vector<String> arg4, String arg5, String arg6) {
40 this.name = (arg0 == null ? "" : arg0);
41 this.type = (arg1 == null ? "" : arg1);
42 this.usage = (arg2 == null ? "" : arg2);
43 this.featureFlag = (arg3 == null ? "" : arg3);
44 this.supArchList = arg4;
45 this.help = (arg5 == null ? "" : arg5);
46 this.group = (arg6 == null ? "" : arg6);
47 }
48
49 public String getFeatureFlag() {
50 return featureFlag;
51 }
52
53 public void setFeatureFlag(String featureFlag) {
54 this.featureFlag = featureFlag;
55 }
56
57 public String getName() {
58 return name;
59 }
60
61 public void setName(String name) {
62 this.name = name;
63 }
64
65 public Vector<String> getSupArchList() {
66 return supArchList;
67 }
68
69 public void setSupArchList(Vector<String> supArchList) {
70 this.supArchList = supArchList;
71 }
72
73 public boolean equals(EventsIdentification pi) {
74 if (this.name.equals(pi.name)) {
75 return true;
76 }
77 return false;
78 }
79
80 public String getType() {
81 return type;
82 }
83
84 public void setType(String type) {
85 this.type = type;
86 }
87
88 public String getUsage() {
89 return usage;
90 }
91
92 public void setUsage(String usage) {
93 this.usage = usage;
94 }
95
96 public String getHelp() {
97 return help;
98 }
99
100 public void setHelp(String help) {
101 this.help = help;
102 }
103
104 public String getGroup() {
105 return group;
106 }
107
108 public void setGroup(String group) {
109 this.group = group;
110 }
111 }