]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdIdentification.java
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / PcdCoded / PcdIdentification.java
diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdIdentification.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/PcdCoded/PcdIdentification.java
deleted file mode 100644 (file)
index 85a7706..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-/** @file\r
-\r
- The file is used to define Pcd Item Identification\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
-\r
-package org.tianocore.frameworkwizard.module.Identifications.PcdCoded;\r
-\r
-import java.util.Vector;\r
-\r
-public class PcdIdentification {\r
-    //\r
-    // Define class members\r
-    //\r
-    private String name = null;\r
-\r
-    private String guidCName = null;\r
-\r
-    private String help = null;\r
-    \r
-    private Vector<String> type = null;\r
-    \r
-    public PcdIdentification(String arg0, String arg1, String arg2, Vector<String> arg3) {\r
-        this.name = (arg0 == null ? "" : arg0);\r
-        this.guidCName = (arg1 == null ? "" : arg1);\r
-        this.help = (arg2 == null ? "" : arg2);\r
-        this.type = arg3;\r
-    }\r
-\r
-    public String getHelp() {\r
-        return help;\r
-    }\r
-\r
-    public void setHelp(String help) {\r
-        this.help = help;\r
-    }\r
-\r
-    public String getGuidCName() {\r
-        return guidCName;\r
-    }\r
-\r
-    public void setGuidCName(String guidCName) {\r
-        this.guidCName = guidCName;\r
-    }\r
-\r
-    public String getName() {\r
-        return name;\r
-    }\r
-\r
-    public void setName(String name) {\r
-        this.name = name;\r
-    }\r
-\r
-    public Vector<String> getType() {\r
-        return type;\r
-    }\r
-\r
-    public void setType(Vector<String> type) {\r
-        this.type = type;\r
-    }\r
-    \r
-    public String toString() {\r
-        return name;\r
-    }\r
-}\r