]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/find/PcdFindResultId.java
Retiring the ANT/JAVA build and removing the older EDK II packages that required...
[mirror_edk2.git] / Tools / Java / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / find / PcdFindResultId.java
diff --git a/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/find/PcdFindResultId.java b/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/find/PcdFindResultId.java
deleted file mode 100644 (file)
index 88e46c4..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-/** @file\r
-\r
- The file is used to define Pcd Identification used by find function\r
-\r
- Copyright (c) 2006, Intel Corporation\r
- All rights reserved. This program and the accompanying materials\r
- are licensed and made available under the terms and conditions of the BSD License\r
- which accompanies this distribution.  The full text of the license may be found at\r
- http://opensource.org/licenses/bsd-license.php\r
-\r
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-\r
- **/\r
-package org.tianocore.frameworkwizard.common.find;\r
-\r
-import java.util.Vector;\r
-\r
-import org.tianocore.frameworkwizard.packaging.PackageIdentification;\r
-\r
-public class PcdFindResultId extends FindResultId {\r
-\r
-    private String tokenSpaceGuidCName = null;\r
-    \r
-    private String token = null;\r
-    \r
-    private String datumType = null;\r
-    \r
-    private String value = null;\r
-    \r
-    private String usage = null;\r
-    \r
-    public PcdFindResultId(String strName, String strType, Vector<String> vArch, String strHelp, Vector<String> vModuleType, PackageIdentification pDeclaredBy) {\r
-        super(strName, strType, vArch, strHelp, vModuleType, pDeclaredBy);\r
-    }\r
-\r
-    public String getDatumType() {\r
-        return datumType;\r
-    }\r
-\r
-    public void setDatumType(String datumType) {\r
-        this.datumType = datumType;\r
-    }\r
-\r
-    public String getToken() {\r
-        return token;\r
-    }\r
-\r
-    public void setToken(String token) {\r
-        this.token = token;\r
-    }\r
-\r
-    public String getTokenSpaceGuidCName() {\r
-        return tokenSpaceGuidCName;\r
-    }\r
-\r
-    public void setTokenSpaceGuidCName(String tokenSpaceGuidCName) {\r
-        this.tokenSpaceGuidCName = tokenSpaceGuidCName;\r
-    }\r
-\r
-    public String getUsage() {\r
-        return usage;\r
-    }\r
-\r
-    public void setUsage(String usage) {\r
-        this.usage = usage;\r
-    }\r
-\r
-    public String getValue() {\r
-        return value;\r
-    }\r
-\r
-    public void setValue(String value) {\r
-        this.value = value;\r
-    }\r
-}\r