]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/common/Identifications/OpeningPlatformList.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / common / Identifications / OpeningPlatformList.java
index 343d8ee6fcad61bfddafff7cf3a62ce65e13f247..40275e9eb3bfbbb1ffecce74405130296e525f55 100644 (file)
@@ -14,6 +14,7 @@
  **/\r
 package org.tianocore.frameworkwizard.common.Identifications;\r
 \r
+import java.util.Set;\r
 import java.util.Vector;\r
 \r
 import javax.swing.tree.TreePath;\r
@@ -141,14 +142,14 @@ public class OpeningPlatformList {
         return true;\r
     }\r
     \r
-    public void setTreePathById(PlatformIdentification id, TreePath treePath) {\r
+    public void setTreePathById(PlatformIdentification id, Set<TreePath> treePath) {\r
         int index = findIndexOfListById(id);\r
         if (index > -1) {\r
             vOpeningPlatformList.elementAt(index).setTreePath(treePath);\r
         }\r
     }\r
     \r
-    public TreePath getTreePathById(PlatformIdentification id) {\r
+    public Set<TreePath> getTreePathById(PlatformIdentification id) {\r
         int index = findIndexOfListById(id);\r
         if (index > -1) {\r
             return vOpeningPlatformList.elementAt(index).getTreePath();\r
@@ -156,7 +157,7 @@ public class OpeningPlatformList {
         return null;\r
     }\r
     \r
-    public TreePath getTreePathByIndex(int index) {\r
+    public Set<TreePath> getTreePathByIndex(int index) {\r
         if (index > -1) {\r
             return vOpeningPlatformList.elementAt(index).getTreePath();\r
         }\r