X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FFrameworkWizard%2Fsrc%2Forg%2Ftianocore%2Fframeworkwizard%2Fmodule%2FIdentifications%2FLibraryClass%2FLibraryClassVector.java;h=efb146e1e7b42df6ca2071c2d9072c3eab0f137a;hp=f7af757458b309233cad2c3be89cf71d18618338;hb=92e2937805abc97f7445217c77315cc1d51a8c60;hpb=73b4e31adc1000ff7b066445af347424c7f67535 diff --git a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/LibraryClass/LibraryClassVector.java b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/LibraryClass/LibraryClassVector.java index f7af757458..efb146e1e7 100644 --- a/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/LibraryClass/LibraryClassVector.java +++ b/Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/module/Identifications/LibraryClass/LibraryClassVector.java @@ -86,4 +86,11 @@ public class LibraryClassVector { public int size() { return this.vLibraryClass.size(); } + + public Vector toStringVector(int index) { + Vector v = new Vector(); + v.addElement(getLibraryClass(index).getLibraryClassName()); + v.addElement(getLibraryClass(index).getUsage()); + return v; + } }