Guest User

Untitled

a guest
Apr 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1.     public final static Enumeration<CMLibrary> libraries(final int code) {
  2.         final Vector<CMLibrary> V=new Vector<CMLibrary>();
  3.         for(int l=0;l<libs.length;l++)
  4.             if((libs[l]!=null)
  5.             &&(libs[l].libraries[code]!=null)
  6.             &&(!V.contains(libs[l].libraries[code])))
  7.                 V.addElement(libs[l].libraries[code]);
  8.         return V.elements();
  9.     }
Add Comment
Please, Sign In to add comment