]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdIdentification.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / PcdCoded / PcdIdentification.java
1 /** @file
2
3 The file is used to define Pcd Item 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.PcdCoded;
17
18 import java.util.Vector;
19
20 public class PcdIdentification {
21 //
22 // Define class members
23 //
24 private String name = null;
25
26 private String guidCName = null;
27
28 private String help = null;
29
30 private Vector<String> type = null;
31
32 public PcdIdentification(String arg0, String arg1, String arg2, Vector<String> arg3) {
33 this.name = (arg0 == null ? "" : arg0);
34 this.guidCName = (arg1 == null ? "" : arg1);
35 this.help = (arg2 == null ? "" : arg2);
36 this.type = arg3;
37 }
38
39 public String getHelp() {
40 return help;
41 }
42
43 public void setHelp(String help) {
44 this.help = help;
45 }
46
47 public String getGuidCName() {
48 return guidCName;
49 }
50
51 public void setGuidCName(String guidCName) {
52 this.guidCName = guidCName;
53 }
54
55 public String getName() {
56 return name;
57 }
58
59 public void setName(String name) {
60 this.name = name;
61 }
62
63 public Vector<String> getType() {
64 return type;
65 }
66
67 public void setType(Vector<String> type) {
68 this.type = type;
69 }
70
71 public String toString() {
72 return name;
73 }
74 }