]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/BuildOptions/BuildOptionsIdentification.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 / module / Identifications / BuildOptions / BuildOptionsIdentification.java
diff --git a/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/BuildOptions/BuildOptionsIdentification.java b/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/BuildOptions/BuildOptionsIdentification.java
deleted file mode 100644 (file)
index 7074d3c..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
-/** @file\r
-\r
- The file is used to define Build Options 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.BuildOptions;\r
-\r
-import java.util.Vector;\r
-\r
-public class BuildOptionsIdentification {\r
-\r
-    //\r
-    // Define class members\r
-    //\r
-    private String option = null;\r
-\r
-    private Vector<String> buildTargets = null;\r
-    \r
-    private String toolChainFamily = null;\r
-\r
-    private String tagName = null;\r
-    \r
-    private String toolCode = null;\r
-    \r
-    private Vector<String> supArchList = null;\r
-\r
-    public BuildOptionsIdentification(String arg0, Vector<String> arg1, String arg2, String arg3, String arg4, Vector<String> arg5) {\r
-        this.option = (arg0 == null ? "" : arg0);\r
-        this.buildTargets = arg1;\r
-        this.toolChainFamily = (arg2 == null ? "" : arg2);\r
-        this.tagName = (arg3 == null ? "" : arg3);\r
-        this.toolCode = (arg4 == null ? "" : arg4);\r
-        this.supArchList = arg5;\r
-    }\r
-\r
-    public String getOption() {\r
-        return option;\r
-    }\r
-\r
-    public void setOption(String option) {\r
-        this.option = option;\r
-    }\r
-\r
-    public Vector<String> getSupArchList() {\r
-        return supArchList;\r
-    }\r
-\r
-    public void setSupArchList(Vector<String> supArchList) {\r
-        this.supArchList = supArchList;\r
-    }\r
-\r
-    public String getTagName() {\r
-        return tagName;\r
-    }\r
-\r
-    public void setTagName(String tagName) {\r
-        this.tagName = tagName;\r
-    }\r
-\r
-    public String getToolChainFamily() {\r
-        return toolChainFamily;\r
-    }\r
-\r
-    public void setToolChainFamily(String toolChainFamily) {\r
-        this.toolChainFamily = toolChainFamily;\r
-    }\r
-\r
-    public String getToolCode() {\r
-        return toolCode;\r
-    }\r
-\r
-    public void setToolCode(String toolCode) {\r
-        this.toolCode = toolCode;\r
-    }\r
-\r
-    public Vector<String> getBuildTargets() {\r
-        return buildTargets;\r
-    }\r
-\r
-    public void setBuildTargets(Vector<String> buildTargets) {\r
-        this.buildTargets = buildTargets;\r
-    }\r
-}\r