]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/Ppis/PpisVector.java
1. Provide "Find" function for Ppi/Protocol/Guid/Pcd/LibraryClass.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / module / Identifications / Ppis / PpisVector.java
CommitLineData
a13899c5 1/** @file\r
2 \r
3 The file is used to define Package Dependencies Vector\r
4 \r
5 Copyright (c) 2006, Intel Corporation\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10 \r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13 \r
14 **/\r
79cb6fdb 15package org.tianocore.frameworkwizard.module.Identifications.Ppis;\r
a13899c5 16\r
17import java.util.Vector;\r
18\r
19public class PpisVector {\r
20\r
21 private Vector<PpisIdentification> vPpis = new Vector<PpisIdentification>();\r
22\r
23 public int findPpis(PpisIdentification sfi) {\r
24 for (int index = 0; index < vPpis.size(); index++) {\r
25 if (vPpis.elementAt(index).equals(sfi)) {\r
26 return index;\r
27 }\r
28 }\r
29 return -1;\r
30 }\r
31\r
32 public int findPpis(String name) {\r
33 for (int index = 0; index < vPpis.size(); index++) {\r
34 if (vPpis.elementAt(index).getName().equals(name)) {\r
35 return index;\r
36 }\r
37 }\r
38 return -1;\r
39 }\r
40\r
41 public PpisIdentification getPpis(int index) {\r
42 if (index > -1) {\r
43 return vPpis.elementAt(index);\r
44 } else {\r
45 return null;\r
46 }\r
47 }\r
48\r
49 public void addPpis(PpisIdentification arg0) {\r
50 vPpis.addElement(arg0);\r
51 }\r
52\r
06a19cee 53 public void setPpis(PpisIdentification arg0, int arg1) {\r
a13899c5 54 vPpis.setElementAt(arg0, arg1);\r
55 }\r
56\r
57 public void removePpis(PpisIdentification arg0) {\r
58 int index = findPpis(arg0);\r
59 if (index > -1) {\r
60 vPpis.removeElementAt(index);\r
61 }\r
62 }\r
63\r
64 public void removePpis(int index) {\r
65 if (index > -1 && index < this.size()) {\r
66 vPpis.removeElementAt(index);\r
67 }\r
68 }\r
69\r
70 public Vector<PpisIdentification> getvPpis() {\r
71 return vPpis;\r
72 }\r
73\r
74 public void setvPpis(Vector<PpisIdentification> Ppis) {\r
75 vPpis = Ppis;\r
76 }\r
77\r
78 public Vector<String> getPpisName() {\r
79 Vector<String> v = new Vector<String>();\r
80 for (int index = 0; index < this.vPpis.size(); index++) {\r
81 v.addElement(vPpis.get(index).getName());\r
82 }\r
83 return v;\r
84 }\r
85\r
86 public int size() {\r
87 return this.vPpis.size();\r
88 }\r
06a19cee 89 \r
90 public Vector<String> toStringVector(int index) {\r
91 Vector<String> v = new Vector<String>();\r
92 v.addElement(getPpis(index).getName());\r
93 v.addElement(getPpis(index).getType());\r
94 v.addElement(getPpis(index).getUsage());\r
95 return v;\r
96 }\r
a13899c5 97}\r