]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/find/PcdFindResultId.java
1. Fix EDKT434: After Workspace is changed, Wizard should close all (desktop area...
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / find / PcdFindResultId.java
1 /** @file
2
3 The file is used to define Pcd Identification used by find function
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 package org.tianocore.frameworkwizard.common.find;
16
17 import java.util.Vector;
18
19 import org.tianocore.frameworkwizard.packaging.PackageIdentification;
20
21 public class PcdFindResultId extends FindResultId {
22
23 private String tokenSpaceGuidCName = null;
24
25 private String token = null;
26
27 private String datumType = null;
28
29 private String value = null;
30
31 private String usage = null;
32
33 public PcdFindResultId(String strName, String strType, Vector<String> vArch, String strHelp, Vector<String> vModuleType, PackageIdentification pDeclaredBy) {
34 super(strName, strType, vArch, strHelp, vModuleType, pDeclaredBy);
35 }
36
37 public String getDatumType() {
38 return datumType;
39 }
40
41 public void setDatumType(String datumType) {
42 this.datumType = datumType;
43 }
44
45 public String getToken() {
46 return token;
47 }
48
49 public void setToken(String token) {
50 this.token = token;
51 }
52
53 public String getTokenSpaceGuidCName() {
54 return tokenSpaceGuidCName;
55 }
56
57 public void setTokenSpaceGuidCName(String tokenSpaceGuidCName) {
58 this.tokenSpaceGuidCName = tokenSpaceGuidCName;
59 }
60
61 public String getUsage() {
62 return usage;
63 }
64
65 public void setUsage(String usage) {
66 this.usage = usage;
67 }
68
69 public String getValue() {
70 return value;
71 }
72
73 public void setValue(String value) {
74 this.value = value;
75 }
76 }