X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fmodule%2FIdentifications%2FSystemTables%2FSystemTablesVector.java;h=fb875acfd575794a13d45268e9ea50c4f92f5a37;hp=8babcd725f661c977e039456775515b74ecea426;hb=214b0d1914b48d651b25e58f321ddb77a46903b8;hpb=79cb6fdbc073e47380880d84c3eef43bef0c0826 diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/SystemTables/SystemTablesVector.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/SystemTables/SystemTablesVector.java index 8babcd725f..fb875acfd5 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/SystemTables/SystemTablesVector.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/SystemTables/SystemTablesVector.java @@ -50,7 +50,7 @@ public class SystemTablesVector { vSystemTables.addElement(arg0); } - public void updateSystemTables(SystemTablesIdentification arg0, int arg1) { + public void setSystemTables(SystemTablesIdentification arg0, int arg1) { vSystemTables.setElementAt(arg0, arg1); } @@ -86,5 +86,11 @@ public class SystemTablesVector { public int size() { return this.vSystemTables.size(); } - + + public Vector toStringVector(int index) { + Vector v = new Vector(); + v.addElement(getSystemTables(index).getName()); + v.addElement(getSystemTables(index).getUsage()); + return v; + } }